source: node_modules/core-js-pure/stable/dom-collections/index.js@ 65b6638

main
Last change on this file since 65b6638 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 466 bytes
Line 
1'use strict';
2require('../../modules/es.object.to-string');
3require('../../modules/web.dom-collections.for-each');
4require('../../modules/web.dom-collections.iterator');
5var ArrayIterators = require('../../modules/es.array.iterator');
6var forEach = require('../../internals/array-for-each');
7
8module.exports = {
9 keys: ArrayIterators.keys,
10 values: ArrayIterators.values,
11 entries: ArrayIterators.entries,
12 iterator: ArrayIterators.values,
13 forEach: forEach
14};
Note: See TracBrowser for help on using the repository browser.