source: imaps-frontend/node_modules/core-js/stable/dom-collections/index.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 2 weeks ago

F4 Finalna Verzija

  • 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.