1'use strict'; 2// https://tc39.github.io/proposal-setmap-offrom/ 3var $export = require('./_export'); 4 5module.exports = function (COLLECTION) { 6 $export($export.S, COLLECTION, { of: function of() { 7 var length = arguments.length; 8 var A = new Array(length); 9 while (length--) A[length] = arguments[length]; 10 return new this(A); 11 } }); 12}; 13