Skip to content

Commit

Permalink
remove duplicate from function document
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Mar 2, 2024
1 parent e0886f2 commit 28a8c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
export type JsonValue = number | string | boolean | null | JsonValue[] | { [key: string]: JsonValue };

/**
* This function clones the given JSON value. There are some invariants for the parameter:
* This function clones the given JSON value.
*
* @param value The JSON value to be cloned. There are two invariants. 1) It must not contain circles
* as JSON does not allow it. This function will cause infinite loop for such values by
Expand Down

0 comments on commit 28a8c71

Please sign in to comment.