New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@hasezoey/interval-promise-ts

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hasezoey/interval-promise-ts

Interval Promise Re-write to TS

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-20%
Maintainers
1
Weekly downloads
 
Created
Source

Interval Promise re-write to TS

its a rewrite to TS Original by Andy Fleming

using my(hasezoey) TS config & lint options

The Following is from the original Readme

Overview

This library provides a simple mechanism for running a promise with a given amount of time between executions.

Standard Javascript » setInterval()

traditional interval

interval-promise » interval()

interval promise

Usage

Simple example using async-await

const interval = require('interval-promise')

// Run a function 10 times with 1 second between each iteration
const id = interval.interval(async () => {
    await someOtherPromiseReturningFunction()
    await another()
}, 1000, {iterations: 10})

// clear it
await clearInterval(id);
import { interval, clearInterval } from "interval-promise";

// Run a function 10 times with 1 second between each iteration
const id: string = interval(async () => {
    await someOtherPromiseReturningFunction()
    await another()
}, 1000, {iterations: 10})

// clear it
await clearInterval(id);

API

interval(cb: function, intervalLength: number | Infinity, options: IOptions): Promise<void>;

Arguments

ArgumentAttritubesDescription
cbfunctionRequired
Function to execute for each interval. MUST return a promise.

Two arguments are passed to this function.
  • iterationNumber number — The iteration number (starting at 0)
  • stop function — used to "stop" (skipping all remaining iterations)
intervalLengthnumber | functionRequired
Length in ms to wait between iterations. Should be (or return) a non-negative integer.

If a function is used, one parameter iterationNumber (starting at 1) is passed.
optionsobjectOptional settings (detailed below).
options.iterationsnumberDefault: Infinity
The number of times to execute the function. Must be Infinity or an integer greater than 0.
(note: counting from 0)
options.stopOnErrorbooleanDefault: true
If true, no subsequent calls will be made. The promise returned by interval() will be rejected and pass through the error thrown.
clearInterval(id: string): Promise<void>;

Arguments

ArgumentAttritubesDescription
idstringRequired
ID returned by an interval

More on "intervalLength" as a function

It will be called with "0" once (the initial call for the first run), and after that "Infinity" if it is set to run Infinite, otherwise a normal number

Project Values

  • Approachability — Basic usage should be concise and readable.
  • Debuggability — Error feedback should be helpful and error handling options should be flexible.
  • Stability — Functionality should be well-tested and reliable.

FAQs

Package last updated on 23 Aug 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc