UNPKG

@subsocial/utils

Version:
10 lines (9 loc) 415 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isDef = exports.isDefined = exports.notDef = exports.notDefined = void 0; const notDefined = (x) => x === null || typeof x === 'undefined'; exports.notDefined = notDefined; exports.notDef = exports.notDefined; const isDefined = (x) => !(0, exports.notDefined)(x); exports.isDefined = isDefined; exports.isDef = exports.isDefined;