source: trip-planner-front/node_modules/core-js/features/set/from.js@ 59329aa

Last change on this file since 59329aa 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.set');
4require('../../modules/es.string.iterator');
5require('../../modules/esnext.set.from');
6require('../../modules/web.dom-collections.iterator');
7var path = require('../../internals/path');
8
9var Set = path.Set;
10var setFrom = Set.from;
11
12module.exports = function from(source, mapFn, thisArg) {
13 return setFrom.call(typeof this === 'function' ? this : Set, source, mapFn, thisArg);
14};
Note: See TracBrowser for help on using the repository browser.