This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
reValuate/node_modules/core-js/internals/collection-add-all.js

14 lines
387 B
JavaScript
Raw Normal View History

2021-04-02 02:24:13 +03:00
'use strict';
var anObject = require('../internals/an-object');
var aFunction = require('../internals/a-function');
// https://github.com/tc39/collection-methods
module.exports = function (/* ...elements */) {
var set = anObject(this);
var adder = aFunction(set.add);
for (var k = 0, len = arguments.length; k < len; k++) {
adder.call(set, arguments[k]);
}
return set;
};