UNPKG

@enonic/js-utils

Version:
11 lines (10 loc) 178 B
// value/isSet.ts function isSet(value) { if (typeof value === "boolean") { return true; } return value !== null && typeof value !== "undefined"; } export { isSet };