massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / collection-of.js
1 'use strict';
2 var arraySlice = require('../internals/array-slice');
3
4 // https://tc39.github.io/proposal-setmap-offrom/
5 module.exports = function of() {
6   return new this(arraySlice(arguments));
7 };