Version 1
[yaffs-website] / node_modules / core-js / library / modules / _array-from-iterable.js
1 var forOf = require('./_for-of');
2
3 module.exports = function(iter, ITERATOR){
4   var result = [];
5   forOf(iter, false, result.push, result, ITERATOR);
6   return result;
7 };