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

@pixi/runner

Package Overview
Dependencies
Maintainers
3
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pixi/runner - npm Package Compare versions

Comparing version 6.1.3 to 6.2.0

27

dist/browser/runner.js
/*!
* @pixi/runner - v6.1.3
* Compiled Mon, 13 Sep 2021 15:29:31 UTC
* @pixi/runner - v6.2.0
* Compiled Mon, 01 Nov 2021 16:52:10 UTC
*

@@ -54,3 +54,3 @@ * @pixi/runner is licensed under the MIT License.

* ```
* @class
*
* @memberof PIXI

@@ -60,3 +60,3 @@ */

/**
* @param {string} name - the function name that will be executed on the listeners added to this Runner.
* @param name - The function name that will be executed on the listeners added to this Runner.
*/

@@ -70,4 +70,4 @@ function Runner(name) {

* Dispatch/Broadcast Runner to all listeners added to the queue.
* @param {...any} params - optional parameters to pass to each listener
* @return {PIXI.Runner}
*
* @param {...any} params - (optional) parameters to pass to each listener
*/

@@ -112,3 +112,2 @@ Runner.prototype.emit = function (a0, a1, a2, a3, a4, a5, a6, a7) {

* @param {any} item - The object that will be listening.
* @return {PIXI.Runner}
*/

@@ -125,4 +124,4 @@ Runner.prototype.add = function (item) {

* Remove a single listener from the dispatch queue.
*
* @param {any} item - The listener that you would like to remove.
* @return {PIXI.Runner}
*/

@@ -139,2 +138,3 @@ Runner.prototype.remove = function (item) {

* Check to see if the listener is already in the Runner
*
* @param {any} item - The listener that you would like to check.

@@ -145,6 +145,3 @@ */

};
/**
* Remove all listeners from the Runner
* @return {PIXI.Runner}
*/
/** Remove all listeners from the Runner */
Runner.prototype.removeAll = function () {

@@ -155,5 +152,3 @@ this.ensureNonAliasedItems();

};
/**
* Remove all references, don't use after this.
*/
/** Remove all references, don't use after this. */
Runner.prototype.destroy = function () {

@@ -168,3 +163,2 @@ this.removeAll();

*
* @member {boolean}
* @readonly

@@ -182,3 +176,2 @@ */

*
* @member {string}
* @readonly

@@ -185,0 +178,0 @@ */

/*!
* @pixi/runner - v6.1.3
* Compiled Mon, 13 Sep 2021 15:29:31 UTC
* @pixi/runner - v6.2.0
* Compiled Mon, 01 Nov 2021 16:52:10 UTC
*

@@ -5,0 +5,0 @@ * @pixi/runner is licensed under the MIT License.

/*!
* @pixi/runner - v6.1.3
* Compiled Mon, 13 Sep 2021 15:29:31 UTC
* @pixi/runner - v6.2.0
* Compiled Mon, 01 Nov 2021 16:52:10 UTC
*

@@ -54,3 +54,3 @@ * @pixi/runner is licensed under the MIT License.

* ```
* @class
*
* @memberof PIXI

@@ -60,3 +60,3 @@ */

/**
* @param {string} name - the function name that will be executed on the listeners added to this Runner.
* @param name - The function name that will be executed on the listeners added to this Runner.
*/

@@ -70,4 +70,4 @@ function Runner(name) {

* Dispatch/Broadcast Runner to all listeners added to the queue.
* @param {...any} params - optional parameters to pass to each listener
* @return {PIXI.Runner}
*
* @param {...any} params - (optional) parameters to pass to each listener
*/

@@ -112,3 +112,2 @@ Runner.prototype.emit = function (a0, a1, a2, a3, a4, a5, a6, a7) {

* @param {any} item - The object that will be listening.
* @return {PIXI.Runner}
*/

@@ -125,4 +124,4 @@ Runner.prototype.add = function (item) {

* Remove a single listener from the dispatch queue.
*
* @param {any} item - The listener that you would like to remove.
* @return {PIXI.Runner}
*/

@@ -139,2 +138,3 @@ Runner.prototype.remove = function (item) {

* Check to see if the listener is already in the Runner
*
* @param {any} item - The listener that you would like to check.

@@ -145,6 +145,3 @@ */

};
/**
* Remove all listeners from the Runner
* @return {PIXI.Runner}
*/
/** Remove all listeners from the Runner */
Runner.prototype.removeAll = function () {

@@ -155,5 +152,3 @@ this.ensureNonAliasedItems();

};
/**
* Remove all references, don't use after this.
*/
/** Remove all references, don't use after this. */
Runner.prototype.destroy = function () {

@@ -168,3 +163,2 @@ this.removeAll();

*
* @member {boolean}
* @readonly

@@ -182,3 +176,2 @@ */

*
* @member {string}
* @readonly

@@ -185,0 +178,0 @@ */

/*!
* @pixi/runner - v6.1.3
* Compiled Mon, 13 Sep 2021 15:29:31 UTC
* @pixi/runner - v6.2.0
* Compiled Mon, 01 Nov 2021 16:52:10 UTC
*

@@ -5,0 +5,0 @@ * @pixi/runner is licensed under the MIT License.

/*!
* @pixi/runner - v6.1.3
* Compiled Mon, 13 Sep 2021 15:29:31 UTC
* @pixi/runner - v6.2.0
* Compiled Mon, 01 Nov 2021 16:52:10 UTC
*

@@ -50,3 +50,3 @@ * @pixi/runner is licensed under the MIT License.

* ```
* @class
*
* @memberof PIXI

@@ -56,3 +56,3 @@ */

/**
* @param {string} name - the function name that will be executed on the listeners added to this Runner.
* @param name - The function name that will be executed on the listeners added to this Runner.
*/

@@ -66,4 +66,4 @@ function Runner(name) {

* Dispatch/Broadcast Runner to all listeners added to the queue.
* @param {...any} params - optional parameters to pass to each listener
* @return {PIXI.Runner}
*
* @param {...any} params - (optional) parameters to pass to each listener
*/

@@ -108,3 +108,2 @@ Runner.prototype.emit = function (a0, a1, a2, a3, a4, a5, a6, a7) {

* @param {any} item - The object that will be listening.
* @return {PIXI.Runner}
*/

@@ -121,4 +120,4 @@ Runner.prototype.add = function (item) {

* Remove a single listener from the dispatch queue.
*
* @param {any} item - The listener that you would like to remove.
* @return {PIXI.Runner}
*/

@@ -135,2 +134,3 @@ Runner.prototype.remove = function (item) {

* Check to see if the listener is already in the Runner
*
* @param {any} item - The listener that you would like to check.

@@ -141,6 +141,3 @@ */

};
/**
* Remove all listeners from the Runner
* @return {PIXI.Runner}
*/
/** Remove all listeners from the Runner */
Runner.prototype.removeAll = function () {

@@ -151,5 +148,3 @@ this.ensureNonAliasedItems();

};
/**
* Remove all references, don't use after this.
*/
/** Remove all references, don't use after this. */
Runner.prototype.destroy = function () {

@@ -164,3 +159,2 @@ this.removeAll();

*
* @member {boolean}
* @readonly

@@ -178,3 +172,2 @@ */

*
* @member {string}
* @readonly

@@ -181,0 +174,0 @@ */

/*!
* @pixi/runner - v6.1.3
* Compiled Mon, 13 Sep 2021 15:29:31 UTC
* @pixi/runner - v6.2.0
* Compiled Mon, 01 Nov 2021 16:52:10 UTC
*

@@ -5,0 +5,0 @@ * @pixi/runner is licensed under the MIT License.

@@ -44,3 +44,3 @@

* ```
* @class
*
* @memberof PIXI

@@ -53,3 +53,3 @@ */

/**
* @param {string} name - the function name that will be executed on the listeners added to this Runner.
* @param name - The function name that will be executed on the listeners added to this Runner.
*/

@@ -59,4 +59,4 @@ constructor(name: string);

* Dispatch/Broadcast Runner to all listeners added to the queue.
* @param {...any} params - optional parameters to pass to each listener
* @return {PIXI.Runner}
*
* @param {...any} params - (optional) parameters to pass to each listener
*/

@@ -83,3 +83,2 @@ emit(a0?: unknown, a1?: unknown, a2?: unknown, a3?: unknown, a4?: unknown, a5?: unknown, a6?: unknown, a7?: unknown): this;

* @param {any} item - The object that will be listening.
* @return {PIXI.Runner}
*/

@@ -89,4 +88,4 @@ add(item: unknown): this;

* Remove a single listener from the dispatch queue.
*
* @param {any} item - The listener that you would like to remove.
* @return {PIXI.Runner}
*/

@@ -96,13 +95,9 @@ remove(item: unknown): this;

* Check to see if the listener is already in the Runner
*
* @param {any} item - The listener that you would like to check.
*/
contains(item: unknown): boolean;
/**
* Remove all listeners from the Runner
* @return {PIXI.Runner}
*/
/** Remove all listeners from the Runner */
removeAll(): this;
/**
* Remove all references, don't use after this.
*/
/** Remove all references, don't use after this. */
destroy(): void;

@@ -112,3 +107,2 @@ /**

*
* @member {boolean}
* @readonly

@@ -120,3 +114,2 @@ */

*
* @member {string}
* @readonly

@@ -123,0 +116,0 @@ */

{
"name": "@pixi/runner",
"version": "6.1.3",
"version": "6.2.0",
"main": "dist/cjs/runner.js",

@@ -42,3 +42,3 @@ "module": "dist/esm/runner.js",

],
"gitHead": "2342b551124751206078602eb0e4408df230923e"
"gitHead": "793f21c0d0f2d2a423bd4339f40a569e1ea68711"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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