mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 04:40:05 +02:00
add some packages
This commit is contained in:
12
node_modules/core-js/modules/_set-collection-of.js
generated
vendored
Normal file
12
node_modules/core-js/modules/_set-collection-of.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
'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);
|
||||
} });
|
||||
};
|
Reference in New Issue
Block a user