This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/core-js/internals/collection-of.js
2020-11-01 22:46:04 +00:00

9 lines
234 B
JavaScript

'use strict';
// https://tc39.github.io/proposal-setmap-offrom/
module.exports = function of() {
var length = arguments.length;
var A = new Array(length);
while (length--) A[length] = arguments[length];
return new this(A);
};