5 lines
125 B
JavaScript
5 lines
125 B
JavaScript
|
|
module.exports = function (it) {
|
||
|
|
// eslint-disable-next-line es/no-map -- safe
|
||
|
|
return Map.prototype.entries.call(it);
|
||
|
|
};
|