diff --git a/docs/globals.html b/docs/globals.html
index 09a1c73..7ebe001 100644
--- a/docs/globals.html
+++ b/docs/globals.html
@@ -2597,7 +2597,7 @@
Nullable
Nullable<T>: T | null
Type parameters
@@ -2613,7 +2613,7 @@ Optional
Optional<T>: T | null | undefined
Type parameters
@@ -2629,7 +2629,7 @@ Undefinable
Undefinable<T>: T | undefined
Type parameters
@@ -2645,7 +2645,7 @@ UnwrapOptional
UnwrapOptional<T>: Exclude<T, null | undefined>
Type parameters
@@ -2661,7 +2661,7 @@ Without
Without<T, K>: Without<T, K>
Type parameters
@@ -2683,7 +2683,7 @@ Const exist
exist: ExistFn = existImplementation
Const filter
Const get
Const map
Const omit
Const pick
Const set
Const unset
Const update
isNullOrUndefined
Parameters
@@ -3008,7 +3008,7 @@isObject
Parameters
@@ -3031,7 +3031,7 @@shallowCopy
Parameters
diff --git a/docs/index.html b/docs/index.html index cedb58a..d7fb333 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2598,7 +2598,7 @@Nullable
Type parameters
@@ -2614,7 +2614,7 @@Optional
Type parameters
@@ -2630,7 +2630,7 @@Undefinable
Type parameters
@@ -2646,7 +2646,7 @@UnwrapOptional
Type parameters
@@ -2662,7 +2662,7 @@Without
Type parameters
@@ -2684,7 +2684,7 @@Const exist
Const filter
Const get
Const map
Const omit
Const pick
Const set
Const unset
Const update
isNullOrUndefined
Parameters
@@ -3009,7 +3009,7 @@isObject
Parameters
@@ -3032,7 +3032,7 @@shallowCopy
Parameters
diff --git a/package.json b/package.json index dd5e6b1..2f3d88c 100644 --- a/package.json +++ b/package.json @@ -44,5 +44,6 @@ "homepage": "https://github.com/Siegrift/tsfunct#readme", "directories": { "doc": "docs" - } + }, + "dependencies": {} } diff --git a/src/lib/set.ts b/src/lib/set.ts index f0eba82..520eaa2 100644 --- a/src/lib/set.ts +++ b/src/lib/set.ts @@ -4,12 +4,12 @@ import { isObject, shallowCopy } from '../utils' type Set1