@dfinity/pic
Version:
An Internet Computer Protocol canister testing library for TypeScript and JavaScript.
11 lines • 318 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isNil = isNil;
exports.isNotNil = isNotNil;
function isNil(value) {
return value === null || value === undefined;
}
function isNotNil(value) {
return value !== null && value !== undefined;
}
//# sourceMappingURL=is-nil.js.map