hz-zhhq-app/node_modules/core-js/features/weak-map/of.js

13 lines
361 B
JavaScript
Raw Normal View History

2025-01-22 10:53:47 +08:00
'use strict';
require('../../modules/es.array.iterator');
require('../../modules/es.weak-map');
require('../../modules/esnext.weak-map.of');
var path = require('../../internals/path');
var WeakMap = path.WeakMap;
var weakMapOf = WeakMap.of;
module.exports = function of() {
return weakMapOf.apply(typeof this === 'function' ? this : WeakMap, arguments);
};