hz-zhhq-app/node_modules/core-js/features/set/of.js

13 lines
327 B
JavaScript
Raw Normal View History

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