kefir-cron
v1.0.0
Published
Cron Stream in Kefir
Downloads
4
Readme
kefir-cron
Creates stream from cron-string
Example:
var cron = require('kefir-cron');
var everySecond = cron('* * * * * *');
everySecond
.map(() => new Date())
.log('tick');
API:
(cronTime: string): KefirStream;
Install
npm i -S kefir-cron