我需要创建一个重复一些值的流。使用bacon,我可以使用repeat primitive完成此操作
发布于 2015-11-24 23:25:22
我完成了下面的代码:
const H = require('highland') H((push, next) => { push(null, 'value to repeat') next() })
https://stackoverflow.com/questions/33888400
相似问题