get-map-iterator.js 125 B

1234
  1. module.exports = function (it) {
  2. // eslint-disable-next-line es/no-map -- safe
  3. return Map.prototype.entries.call(it);
  4. };