volva
Version:
Easier type checks for JS/TS variables.
11 lines • 326 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isSet = void 0;
const isSet = (input) => {
if (input === undefined)
throw new Error('Missing argument');
return input instanceof Set;
};
exports.isSet = isSet;
exports.default = exports.isSet;
//# sourceMappingURL=sets.js.map