Comparing version 0.1.0 to 0.1.1
11
index.js
'use strict'; | ||
var has = Object.prototype.hasOwnProperty | ||
, ms = require('millisecond'); | ||
, ms = require('millisecond') | ||
, next = null; | ||
// | ||
// Attempt to detect if we have support for setImmediate or process.nextTick so | ||
// we can use it in our setImmediate function. | ||
// | ||
var next = 'object' === typeof process && 'function' === process.nextTick | ||
? process.nextTick | ||
: null; | ||
// | ||
// The process.nexTick doesn't have a way to cancel the scheduled tick so we | ||
@@ -16,0 +9,0 @@ // detect it first and know that when next is a function we cannot clear it. |
{ | ||
"name": "tick-tock", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Timer management, never forget to clear timers again", | ||
@@ -15,5 +15,2 @@ "main": "index.js", | ||
}, | ||
"browser": { | ||
"process": false | ||
}, | ||
"keywords": [ | ||
@@ -20,0 +17,0 @@ "timer", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17597
423