Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
enumify-albinodrought
Advanced tools
A JavaScript library for enums. To be used by transpiled ES6 (e.g. via Babel).
A JavaScript library for enums. To be used by transpiled ES6 (e.g. via Babel).
The approach taken by Enumify is heavily inspired by Java enums.
Install:
npm install enumify
Use:
import {Enum} from 'enumify';
class Color extends Enum {}
Color.initEnum(['RED', 'GREEN', 'BLUE']);
console.log(Color.RED); // Color.RED
console.log(Color.GREEN instanceof Color); // true
new Color();
// Error: Enum classes can’t be instantiated
Enums get a static property enumValues
, which contains an Array with all enum values:
for (const c of Color.enumValues) {
console.log(c);
}
// Output:
// Color.RED
// Color.GREEN
// Color.BLUE
The inherited tool method enumValueOf()
maps names to values:
console.log(Color.enumValueOf('RED') === Color.RED); // true
true
Enumify adds two properties to every enum value:
name
: the name of the enum value.
> Color.BLUE.name
'BLUE'
ordinal
: the position of the enum value within the Array enumValues
.
> Color.BLUE.ordinal
2
initEnum()
also accepts an object as its parameter. That enables you to add properties to enum values:
class TicTacToeColor extends Enum {}
// Alas, data properties don’t work, because the enum
// values (TicTacToeColor.X etc.) don’t exist when
// the object literals are evaluated.
TicTacToeColor.initEnum({
O: {
get inverse() { return TicTacToeColor.X },
},
X: {
get inverse() { return TicTacToeColor.O },
},
});
console.log(TicTacToeColor.O.inverse); // TicTacToeColor.X
test/
contains examples.FAQs
A JavaScript library for enums. To be used by transpiled ES6 (e.g. via Babel).
The npm package enumify-albinodrought receives a total of 1 weekly downloads. As such, enumify-albinodrought popularity was classified as not popular.
We found that enumify-albinodrought demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.