1.0.9 • Published 5 years ago

callbag-interval-immediate v1.0.9

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

callbag-interval-immediate

GitHub license npm version Coverage Status CircleCI Status

A callbag listenable source that sends an initial number synchronously and then incrementally every x milliseconds.

npm install callbag-interval-immediate

example

const interval = require("callbag-interval-immediate");
const observe = require("callbag-observe");

const source = interval(1000);

observe(x => console.log(x))(source); // 0
console.log(0.5); // 0.5
// 1
// 2
// 3
// ...
1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago