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

@phosphor/signaling

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@phosphor/signaling - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

9

lib/index.js

@@ -333,2 +333,9 @@ "use strict";

/**
* A function to schedule an event loop callback.
*/
var schedule = (function () {
var ok = typeof requestAnimationFrame === 'function';
return ok ? requestAnimationFrame : setImmediate;
})();
/**
* Find a connection which matches the given parameters.

@@ -366,3 +373,3 @@ */

if (dirtySet.size === 0) {
requestAnimationFrame(cleanupDirtySet);
schedule(cleanupDirtySet);
}

@@ -369,0 +376,0 @@ dirtySet.add(array);

2

package.json
{
"name": "@phosphor/signaling",
"version": "0.1.0",
"version": "0.1.1",
"description": "PhosphorJS - Signals and Slots",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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