source: trip-planner-front/node_modules/core-js/stable/dom-collections/index.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: 452 bytes
Line 
1require('../../modules/es.object.to-string');
2require('../../modules/web.dom-collections.for-each');
3require('../../modules/web.dom-collections.iterator');
4var ArrayIterators = require('../../modules/es.array.iterator');
5var forEach = require('../../internals/array-for-each');
6
7module.exports = {
8 keys: ArrayIterators.keys,
9 values: ArrayIterators.values,
10 entries: ArrayIterators.entries,
11 iterator: ArrayIterators.values,
12 forEach: forEach
13};
Note: See TracBrowser for help on using the repository browser.