🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

ticky

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ticky - npm Package Compare versions

Comparing version

to
1.0.1

2

package.json
{
"name": "ticky",
"version": "1.0.0",
"version": "1.0.1",
"description": "Run a callback as soon as possible",

@@ -5,0 +5,0 @@ "main": "ticky.js",

var si = typeof setImmediate === 'function', tick;
if (si) {
tick = function (fn) { setImmediate(fn); };
} else if (typeof process !== undef && process.nextTick) {
} else if (typeof process !== 'undefined' && process.nextTick) {
tick = process.nextTick;

@@ -10,2 +10,2 @@ } else {

module.exports = tick;
module.exports = tick;