Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

web.dom-collections.for-each.js 691B

123456789101112131415
  1. var global = require('../internals/global');
  2. var DOMIterables = require('../internals/dom-iterables');
  3. var forEach = require('../internals/array-for-each');
  4. var createNonEnumerableProperty = require('../internals/create-non-enumerable-property');
  5. for (var COLLECTION_NAME in DOMIterables) {
  6. var Collection = global[COLLECTION_NAME];
  7. var CollectionPrototype = Collection && Collection.prototype;
  8. // some Chrome versions have non-configurable methods on DOMTokenList
  9. if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {
  10. createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);
  11. } catch (error) {
  12. CollectionPrototype.forEach = forEach;
  13. }
  14. }