collection-of.js 197 B

1234567
  1. 'use strict';
  2. var arraySlice = require('../internals/array-slice');
  3. // https://tc39.github.io/proposal-setmap-offrom/
  4. module.exports = function of() {
  5. return new this(arraySlice(arguments));
  6. };