Skip to content

Instantly share code, notes, and snippets.

@mmoss
Forked from oriSomething/enum-builder.js
Created July 15, 2016 20:19
Show Gist options
  • Save mmoss/b2449611df58c987854df42b9cd46321 to your computer and use it in GitHub Desktop.
Save mmoss/b2449611df58c987854df42b9cd46321 to your computer and use it in GitHub Desktop.
build enums with lodash
import _ from 'lodash';
export function enumNumber(... params) {
return Object.freeze(_.mapValues(_.invert(params), Number));
}
export function enumString(... params) {
return Object.freeze(_.mapKeys(params));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment