debian-mirror-gitlab/core-js/stable/dom-collections/index.js

13 lines
406 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
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
};