Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rx

Package Overview
Dependencies
Maintainers
2
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rx - npm Package Compare versions

Comparing version 2.1.8 to 2.1.9

2

bower.json
{
"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(),

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc