biobulkbende.org/node_modules/default-resolution
Tancre 0efda7fffe structure, layout and automation 2020-09-16 14:23:28 +02:00
..
LICENSE structure, layout and automation 2020-09-16 14:23:28 +02:00
README.md structure, layout and automation 2020-09-16 14:23:28 +02:00
index.js structure, layout and automation 2020-09-16 14:23:28 +02:00
node-version.js structure, layout and automation 2020-09-16 14:23:28 +02:00
package.json structure, layout and automation 2020-09-16 14:23:28 +02:00

README.md

default-resolution

NPM version Downloads Build Status AppVeyor Build Status Coveralls Status Gitter chat

Get the default resolution time based on the current node version, optionally overridable.

Originally implemented by @dinoboff in gulpjs/undertaker#17.

Split out for standalone use.

Usage

var defaultResolution = require('default-resolution');

defaultResolution();
//-> 1000 (1 second) in node 0.10
//-> 1 (millisecond) in node 0.11+

// use a different value
defaultResolution(12);
//-> 12 always

API

defaultResolution([resolution])

Returns the default resolution, based on the node platform. See Default resolution table below for resolutions.

Optionally takes a resolution number to force override any platform resolutions.

Default resolutions

node version resolution
0.10 1s
0.11+ 1ms

More information at https://github.com/gulpjs/undertaker/pull/17#issuecomment-82374512

License

MIT