is-set.js 136 B

1234567
  1. "use strict";
  2. function isSet(val) {
  3. return (typeof Set !== "undefined" && val instanceof Set) || false;
  4. }
  5. module.exports = isSet;