jmini 0.0.113 → 0.0.114

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/esm/core.d.ts +1 -1
  2. package/package.json +1 -1
package/esm/core.d.ts CHANGED
@@ -178,7 +178,7 @@ declare namespace Jmini {
178
178
  };
179
179
  isEqual(a: any, b: any, stringify?: boolean): boolean;
180
180
  isExist(v: any): boolean;
181
- isNullish(val: any): boolean;
181
+ isNullish(v: any): v is null | undefined;
182
182
  isJmini(v: any): v is Methods & Chains;
183
183
  isString(v: any): v is string;
184
184
  isBoolean(v: any): v is boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jmini",
3
- "version": "0.0.113",
3
+ "version": "0.0.114",
4
4
  "description": "minified JavaScript Framework",
5
5
  "main": "cjs/index.js",
6
6
  "module": "esm/index.js",