From 28a8c71aeebe6785a27901e73a0c9022189e6e16 Mon Sep 17 00:00:00 2001 From: rhysd Date: Sat, 2 Mar 2024 18:32:59 +0900 Subject: [PATCH] remove duplicate from function document --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 426393e..9f28fe3 100644 --- a/index.ts +++ b/index.ts @@ -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