1.0.9 • Published 7 years ago

callbag-interval-immediate v1.0.9

Weekly downloads
5
License
MIT
Repository
github
Last release
7 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

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago