PromoCursed/node_modules/core-js/internals/a-map.js

9 lines
175 B
JavaScript
Raw Normal View History

2024-08-20 23:25:37 +04:00
'use strict';
var has = require('../internals/map-helpers').has;
// Perform ? RequireInternalSlot(M, [[MapData]])
module.exports = function (it) {
has(it);
return it;
};