UNPKG

type-fns

Version:

A set of types, type checks, and type guards for simpler, safer, and easier to read code.

9 lines 267 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isNotNull = void 0; /** * checks whether the value is not undefined */ const isNotNull = (val) => val !== null; exports.isNotNull = isNotNull; //# sourceMappingURL=isNotNull.js.map