Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@pixi/utils
Advanced tools
@pixi/utils is a utility library that provides a collection of helper functions and classes to assist with common tasks in the PixiJS ecosystem. It includes utilities for data structures, math operations, string manipulations, and more.
EventEmitter
The EventEmitter class provides a way to handle custom events. You can create an instance, register event listeners, and emit events.
const { EventEmitter } = require('@pixi/utils');
const emitter = new EventEmitter();
emitter.on('event', () => console.log('Event triggered!'));
emitter.emit('event');
isMobile
The isMobile utility helps to detect if the user is on a mobile device. It provides properties to check for various mobile platforms.
const { isMobile } = require('@pixi/utils');
console.log(isMobile.any); // true if the user is on a mobile device
uid
The uid function generates a unique identifier, which can be useful for creating unique keys or IDs.
const { uid } = require('@pixi/utils');
console.log(uid()); // Generates a unique identifier
deprecation
The deprecation function logs a deprecation warning to the console, which is useful for informing developers about deprecated methods or features.
const { deprecation } = require('@pixi/utils');
deprecation('1.0.0', 'This method is deprecated, use newMethod instead.');
Lodash is a modern JavaScript utility library delivering modularity, performance, and extras. It provides a wide range of utility functions for common programming tasks, similar to @pixi/utils but with a broader scope.
EventEmitter3 is a high-performance EventEmitter for Node.js and the browser. It offers similar event handling capabilities as the EventEmitter in @pixi/utils but is more focused and optimized for performance.
UUID is a library for generating RFC-compliant UUIDs. It provides similar functionality to the uid function in @pixi/utils but is specifically focused on generating universally unique identifiers.
npm install @pixi/utils
import * as utils from '@pixi/utils';
FAQs
Collection of utilities used by PixiJS
The npm package @pixi/utils receives a total of 85,409 weekly downloads. As such, @pixi/utils popularity was classified as popular.
We found that @pixi/utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.