文件名称:js-iterator:javascript 中的可链接异步迭代器
文件大小:7KB
文件格式:ZIP
更新时间:2024-07-19 14:31:03
JavaScript
js-迭代器 下载 待办事项:npm 快速开始 需要 js 迭代器。 待办事项:npm var Iterator = require ( 'js-iterator' ) ; 在创建时,迭代器采用节点回调样式的next函数。 要从迭代器中获取下一个值,请调用其next方法。 // cb(err, item) function nextRandom ( cb ) { cb ( null , Math . random ( ) ) ; } var it = new Iterator ( nextRandom ) ; it . next ( function ( err , item ) { console . log ( item ) ; } ) ; 0.13976101111620665 随机迭代器是无限的,因此转换为数组将花费很长时间。 但是我们可以使用take限
【文件预览】:
js-iterator-master
----test()
--------IteratorSpec.js(12KB)
----.gitignore(631B)
----index.js(7KB)
----readme.md(4KB)
----package.json(440B)