get-set-iterator.js 176 B

123456
  1. var call = require('../internals/function-call');
  2. module.exports = function (it) {
  3. // eslint-disable-next-line es/no-set -- safe
  4. return call(Set.prototype.values, it);
  5. };