massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / features / map / from.js
1 'use strict';
2 require('../../modules/es.array.iterator');
3 require('../../modules/es.map');
4 require('../../modules/es.string.iterator');
5 require('../../modules/esnext.map.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 Map = path.Map;
12 var $from = Map.from;
13
14 module.exports = function from(source, mapFn, thisArg) {
15   return call($from, isCallable(this) ? this : Map, source, mapFn, thisArg);
16 };