All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.core-js.modules._array-from-iterable.js Maven / Gradle / Ivy

The newest version!
var forOf = require('./_for-of');

module.exports = function (iter, ITERATOR) {
  var result = [];
  forOf(iter, false, result.push, result, ITERATOR);
  return result;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy