get-map-iterator.js 179 B

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