/node_modules/babel-polyfill/node_modules/core-js/library/modules/_set-collection-of.js
https://bitbucket.org/worklabschd/bingle_customer2 · JavaScript · 12 lines · 10 code · 1 blank · 1 comment · 1 complexity · 3480e04c685ccfd92d885f5c3d5e5e17 MD5 · raw file
- 'use strict';
- // https://tc39.github.io/proposal-setmap-offrom/
- var $export = require('./_export');
- module.exports = function (COLLECTION) {
- $export($export.S, COLLECTION, { of: function of() {
- var length = arguments.length;
- var A = new Array(length);
- while (length--) A[length] = arguments[length];
- return new this(A);
- } });
- };