@opfr/utils-lang 0.0.16 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/array.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/array.d.ts CHANGED
@@ -5,4 +5,4 @@ export declare const mutuallyInclusive: <T>(array1: T[], array2: T[], key?: (i:
5
5
  export declare const exclude: <T>(array: T[], exclude: T[], key?: (i: T) => T | string | number) => T[];
6
6
  export declare const unique: <T extends object, K extends string | number>(array: T[], key: (i: T) => K) => K[];
7
7
  export declare const shuffle: <T>(array: T[]) => T[];
8
- export declare const filterNullAndUndefined: <T>(array: (T | null | undefined)[]) => (T | null | undefined)[];
8
+ export declare const filterNullAndUndefined: <T>(array: (T | null | undefined)[]) => T[];
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.0.16",
7
+ "version": "0.0.17",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/Discord-OPFR/utils-lang.git"