Socket
Socket
Sign inDemoInstall

big-time

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

big-time

Big time makes it possible to have a timeout that is longer than 24.8 days (2^31-1 milliseconds).


Version published
Weekly downloads
6.8K
increased by3.51%
Maintainers
2
Weekly downloads
 
Created
Source

Big-Time

Build Status npm

Reworking of long-timeout that has more features and follows correct semver and has unit tests. Big-Time is a custom timer class to allow really long values into setTimeout that are larger than Node would normally support (2^31-1).

Usage

var bt = require('big-time');

bt.setTimeout(function () {

    console.log('if you wait for this, it will eventually log');
}, Number.MAX_VALUE);

var timer = bt.setTimeout(function () {

    console.log('shorter');
}, 1000);
bt.clearTimeout(timer);

API

bt.setTimeout(callback, delay, [arg1, arg2, arg3,...])

Creates a new Big-Time timer object and starts the timer where:

  • callback - the function to execute after delay milliseconds has passed. callback will be called with arg1, arg2, arg3... if they are passed into setTimeout, exactly like native setTimeout
  • delay - the number of milliseconds to wait before executing callback. Must be an integer.
  • [arg1, arg2, arg3,...] - optional N number of extra parameters that will be passed back into callback.

bt.clearTimeout(timer)

Clears a running Big-Time object.

FAQs

Package last updated on 29 May 2015

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