@devexperts/utils
Advanced tools
Comparing version 0.13.0 to 0.14.0-0
@@ -14,1 +14,2 @@ import { ObjectOmit } from 'typelevel-ts'; | ||
export declare type PartialKeys<T extends {}, K extends keyof T> = ObjectOmit<T, K> & Partial<Pick<T, K>>; | ||
export declare const isNotNullable: <T>(value: T | null | undefined) => value is T; |
@@ -41,2 +41,3 @@ "use strict"; | ||
exports.deepEqual = deepEqual; | ||
exports.isNotNullable = function (value) { return value !== null && value !== undefined; }; | ||
//# sourceMappingURL=object.js.map |
{ | ||
"name": "@devexperts/utils", | ||
"version": "0.13.0", | ||
"version": "0.14.0-0", | ||
"description": "", | ||
@@ -8,6 +8,6 @@ "main": "lib/index.js", | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"build": "dx-tools build-lib src dist", | ||
"build": "dx-tools build-lib src dist --failOnError", | ||
"clean": "dx-tools clean dist", | ||
"prepare": "npm run clean && npm run build", | ||
"start": "npm run watch", | ||
"prepare": "yarn clean && yarn build", | ||
"start": "yarn watch", | ||
"watch": "dx-tools build-lib src dist -w" | ||
@@ -36,5 +36,5 @@ }, | ||
"devDependencies": { | ||
"@devexperts/tools": "^0.13.0", | ||
"@devexperts/tools": "^0.14.0-0", | ||
"fp-ts": "^1.2.0" | ||
} | ||
} |
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
74281
1596