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