source: trip-planner-front/node_modules/core-js/features/map/from.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 471 bytes
Line 
1'use strict';
2require('../../modules/es.array.iterator');
3require('../../modules/es.map');
4require('../../modules/es.string.iterator');
5require('../../modules/esnext.map.from');
6require('../../modules/web.dom-collections.iterator');
7var path = require('../../internals/path');
8
9var Map = path.Map;
10var mapFrom = Map.from;
11
12module.exports = function from(source, mapFn, thisArg) {
13 return mapFrom.call(typeof this === 'function' ? this : Map, source, mapFn, thisArg);
14};
Note: See TracBrowser for help on using the repository browser.