文件名称:agf:基于生成器的异步流的轻量级库
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-05 02:58:07
JavaScript
f 一个基于生成器的异步流的轻量级库,非常简单而且非常有用 用法 没有结果回调的流 agf ( function * ( resultHandler ) { const foo = yield fs . readFile ( "foo.txt" , "ascii" , resultHandler ( ) ) ; const res = foo . toUpperCase ( ) ; return fs . writeFile ( res , resultHandler ( ) ) ; } ) ; 没有结果回调的流 agf ( function * ( resultHandler ) { const foo = yield fs . readFile ( "there is not such a file.txt" , "ascii" , resultHa
【文件预览】:
agf-master
----.gitignore(40B)
----README.md(2KB)
----test()
--------mocha.opts(41B)
--------agf.test.js(7KB)
----package.json(503B)
----index.js(2KB)
----.npmignore(101B)
----.travis.yml(50B)