max-timeout
The max amount of milliseconds you can pass to `setTimeout()`
Last updated 5 years ago by sindresorhus .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install max-timeout 
SYNC missed versions from official npm registry.

max-timeout

The max amount of milliseconds you can pass to setTimeout()

A value larger than the one returned from this module, 2147483647 (~25 days), is too big to fit into a signed 32-bit integer, which is how JS engines store it, and will cause overflow, resulting in the timeout being scheduled immediately.

Install

$ npm install max-timeout

Usage

import maxTimeout from 'max-timeout';

setTimeout(() => {}, maxTimeout);

Related

  • delay - Delay a promise a specified amount of time

Current Tags

  • 2.0.0                                ...           latest (5 years ago)

2 Versions

  • 2.0.0                                ...           5 years ago
  • 1.0.0                                ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (2)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |