array tap:数组扩展用于调试mapfilterflat ..的链 源码
获取两次调用之间的数组值 import { initArrayTap } from 'array-tap' ; initArrayTap ( ) ; [ "alice" , "in" , "wonderland" ] . map ( str => str . length ) . tap ( arr => console . log ( arr ) ) . filter ( n => n > 5 ) ; 名称选项 默认情况下, initArrayTap()将使用“ tap”方法扩展Array原型。 可以选择其他名称: initArrayTap("myTap") 。 与Javascript符号结合使用,可以防止名称冲突。 import { initArrayTap } from 'array-tap' ; const tap = Symbol ( "tap" ) ; init
文件列表
array-tap-master.zip
(预估有个7文件)
array-tap-master
README.md
685B
LICENSE
1KB
package.json
742B
lib
index.test.js
1KB
index.js
328B
.eslintrc.js
307B
package-lock.json
72B
暂无评论