type-fns
Version:
A set of types, type checks, and type guards for simpler, safer, and easier to read code.
8 lines • 378 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isPresentAssess = void 0;
const isNotNull_1 = require("./isNotNull");
const isNotUndefined_1 = require("./isNotUndefined");
const assess = (t) => (0, isNotNull_1.isNotNull)(t) && (0, isNotUndefined_1.isDefined)(t);
exports.isPresentAssess = assess;
//# sourceMappingURL=isPresent.assess.js.map