UNPKG

jsmodern

Version:

An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.

9 lines 240 B
export function utilIsSet(x) { return null == x ? false : 'object' === typeof (x) && 'Set' === x.constructor.name; } export const isSet = { isStatic: true, label: 'isSet', fn: utilIsSet, }; //# sourceMappingURL=is-set.js.map