mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-09 19:44:56 +02:00
15 lines
466 B
JavaScript
15 lines
466 B
JavaScript
'use strict';
|
|
require('../../modules/es.object.to-string');
|
|
require('../../modules/web.dom-collections.for-each');
|
|
require('../../modules/web.dom-collections.iterator');
|
|
var ArrayIterators = require('../../modules/es.array.iterator');
|
|
var forEach = require('../../internals/array-for-each');
|
|
|
|
module.exports = {
|
|
keys: ArrayIterators.keys,
|
|
values: ArrayIterators.values,
|
|
entries: ArrayIterators.entries,
|
|
iterator: ArrayIterators.values,
|
|
forEach: forEach
|
|
};
|