Socket
Book a DemoInstallSign in
Socket

callbag-interval-immediate

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

callbag-interval-immediate

A implementation of the interval operator that emits immediately

latest
Source
npmnpm
Version
1.0.9
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

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
// ...

Keywords

callbag

FAQs

Package last updated on 26 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts