Comparing version 2.1.8 to 2.1.9
{ | ||
"name": "Rx", | ||
"version": "2.1.8", | ||
"version": "2.1.9", | ||
"main": [ | ||
@@ -5,0 +5,0 @@ "rx.js", |
@@ -5,3 +5,3 @@ { | ||
"description": "Library for composing asynchronous and event-based operations in JavaScript", | ||
"version": "2.1.8", | ||
"version": "2.1.9", | ||
"homepage": "http://rx.codeplex.com", | ||
@@ -8,0 +8,0 @@ "author": { |
@@ -17,7 +17,8 @@ | ||
if (typeof window.process === 'object' && Object.prototype.toString.call(window.process) === '[object process]') { | ||
scheduleMethod = window.process.nextTick; | ||
} else if (typeof window.setImmediate === 'function') { | ||
// Check for setImmediate first for Node v0.11+ | ||
if (typeof window.setImmediate === 'function') { | ||
scheduleMethod = window.setImmediate; | ||
clearMethod = window.clearImmediate; | ||
} else if (typeof window.process === 'object' && Object.prototype.toString.call(window.process) === '[object process]') { | ||
scheduleMethod = window.process.nextTick; | ||
} else if (postMessageSupported()) { | ||
@@ -24,0 +25,0 @@ var MSG_PREFIX = 'ms.rx.schedule' + Math.random(), |
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
1610808
31008