@async-generator/interval

1.0.2 • Public • Published

Generate integers every preset amount of time

Installation

> npm i @async-generator/inteval

Usage

const interval = require("@async-generator/inteval");

const everySecond = interval(1000);

for await (let i of everySecond) {
  console.log(i) // will log 0, 1, 2, 3, ... every second
}

// usage with optional mapFn
const booleanEverySecond = interval(1000, n => n % 2 === 0);

for await (let isEven of everySecond) {
  console.log(isEven) // will log true, false, true, false, ... every second
}

Package Sidebar

Install

npm i @async-generator/interval

Weekly Downloads

1

Version

1.0.2

License

MIT

Unpacked Size

2.74 kB

Total Files

5

Last publish

Collaborators

  • tungv