massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / features / set / of.js
1 'use strict';
2 require('../../modules/es.array.iterator');
3 require('../../modules/es.set');
4 require('../../modules/esnext.set.of');
5 var path = require('../../internals/path');
6 var apply = require('../../internals/function-apply');
7 var isCallable = require('../../internals/is-callable');
8
9 var Set = path.Set;
10 var setOf = Set.of;
11
12 module.exports = function of() {
13   return apply(setOf, isCallable(this) ? this : Set, arguments);
14 };