mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-14 16:00:17 +00:00
13 lines
406 B
JavaScript
13 lines
406 B
JavaScript
|
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
|
||
|
};
|