UNPKG

125 BJavaScriptView Raw
1const nullish = x => x === null || x === void 0;
2
3const valid = x => x !== null && x !== void 0;
4
5export { nullish, valid };