New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

frame-scheduling

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frame-scheduling - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

2

lib/frameScheduling.d.ts

@@ -6,5 +6,5 @@ export declare const P_LOWER = 1;

export declare const P_IMPORTANT = 10;
declare const _default: (callback: Function, {priority}?: {
declare const _default: (callback: () => void, {priority}?: {
priority?: number;
}) => void;
export default _default;

@@ -8,2 +8,5 @@ "use strict";

}
else if ("setImmediate" in context) {
defer = setImmediate.bind(context);
}
else {

@@ -25,4 +28,4 @@ defer = setTimeout.bind(context);

var node = {
next: null,
value: value,
next: null
};

@@ -104,3 +107,3 @@ if (this.length === 0) {

catch (e) {
console.error(e);
console.error(e); // tslint:disable-line
}

@@ -107,0 +110,0 @@ if (jobs.isEmpty()) {

{
"name": "frame-scheduling",
"version": "0.5.0",
"version": "0.5.1",
"description": "Asynchronous start of functions in JS. Supports priority and interrupt execution every 16 milliseconds, to achieve 60fps.",

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

@@ -19,3 +19,3 @@ {

},
"include": ["src/**/*", "tests/**/*"]
"include": ["src/**/*"]
}
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