Git Product home page Git Product logo

enum.js's Introduction

Enum.js

Sometimes we want immutable enums in Javascript, but standard objects are not really ideal for this, and can be accidentally modified.

Enum.js solves this problem by providing a factory function to generate immutable enums (where possible in the browser). If a browser does not support the methods used, then Enum.js will fall back to using mutable objects.

Using Enum.js is quite simple:

var Enum = require('enum');
var MyEnum = new Enum('First Value', 'Second', 'thirdVal', '4');

This will give you an object with the following key-value pairings:

MyEnum.FIRST_VALUE; // 1
MyEnum.SECOND;      // 2
MyEnum.THIRD_VAL;   // 3
MyEnum[4];	        // 4

Enum.js automatically underscores and capitalises the entire key, to make sure it's standard.

If you should try to specify a key twice, Enum.js will only use the first instance of it.

enum.js's People

Contributors

gfarrell avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.