Comparing version 0.29.13 to 0.29.14
@@ -11,3 +11,3 @@ import { Ctor, Newable } from "@bunt/type"; | ||
export declare const isNullish: (value: unknown) => value is null | undefined; | ||
export declare const isNotNullish: <T>(value: T | null | undefined) => value is null | undefined; | ||
export declare const isNotNullish: <T>(value: T | null | undefined) => value is T; | ||
export declare const isFunction: <T extends (...args: any) => any>(value: unknown) => value is T; | ||
@@ -14,0 +14,0 @@ export declare const isArrowFunction: <T, A extends any[]>(value: unknown) => value is (...args: A[]) => T; |
@@ -24,3 +24,3 @@ "use strict"; | ||
exports.isNullish = isNullish; | ||
const isNotNullish = (value) => (!((0, exports.isNull)(value) || (0, exports.isUndefined)(value))); | ||
const isNotNullish = (value) => !(0, exports.isNullish)(value); | ||
exports.isNotNullish = isNotNullish; | ||
@@ -27,0 +27,0 @@ const isFunction = (value) => { |
@@ -11,3 +11,3 @@ import { Ctor, Newable } from "@bunt/type"; | ||
export declare const isNullish: (value: unknown) => value is null | undefined; | ||
export declare const isNotNullish: <T>(value: T | null | undefined) => value is null | undefined; | ||
export declare const isNotNullish: <T>(value: T | null | undefined) => value is T; | ||
export declare const isFunction: <T extends (...args: any) => any>(value: unknown) => value is T; | ||
@@ -14,0 +14,0 @@ export declare const isArrowFunction: <T, A extends any[]>(value: unknown) => value is (...args: A[]) => T; |
@@ -24,3 +24,3 @@ "use strict"; | ||
exports.isNullish = isNullish; | ||
const isNotNullish = (value) => (!((0, exports.isNull)(value) || (0, exports.isUndefined)(value))); | ||
const isNotNullish = (value) => !(0, exports.isNullish)(value); | ||
exports.isNotNullish = isNotNullish; | ||
@@ -27,0 +27,0 @@ const isFunction = (value) => { |
{ | ||
"name": "@bunt/is", | ||
"version": "0.29.13", | ||
"keywords": [ | ||
"typescript" | ||
], | ||
"author": { | ||
"name": "Artur Bier", | ||
"email": "izatop@gmail.com" | ||
}, | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "dist/cjs/index.d.ts", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/esm/index.d.ts", | ||
"default": "./dist/esm/index.js" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/index.d.ts", | ||
"default": "./dist/cjs/index.js" | ||
} | ||
} | ||
}, | ||
"files": [ | ||
"dist/", | ||
"LICENSE" | ||
], | ||
"description": "Utils", | ||
"repository": "git@github.com:izatop/bunt.git", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"@bunt/type": "^0.29.13" | ||
}, | ||
"gitHead": "8eb5e57f43cfb71c79b4b5183207b2894ec4726d" | ||
"name": "@bunt/is", | ||
"version": "0.29.14", | ||
"keywords": [ | ||
"typescript" | ||
], | ||
"author": { | ||
"name": "Artur Bier", | ||
"email": "izatop@gmail.com" | ||
}, | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "dist/cjs/index.d.ts", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/esm/index.d.ts", | ||
"default": "./dist/esm/index.js" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/index.d.ts", | ||
"default": "./dist/cjs/index.js" | ||
} | ||
} | ||
}, | ||
"files": [ | ||
"dist/", | ||
"LICENSE" | ||
], | ||
"description": "Utils", | ||
"repository": "git@github.com:izatop/bunt.git", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"@bunt/type": "^0.29.14" | ||
}, | ||
"gitHead": "d4766cbd69a88380fe736738fa9a68604f77d305" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
94131
Updated@bunt/type@^0.29.14