Skip to content

Instantly share code, notes, and snippets.

@DimaCrafter
Created December 8, 2019 08:05
Show Gist options
  • Save DimaCrafter/b0241341cbb918670d0e00bc75093f2f to your computer and use it in GitHub Desktop.
Save DimaCrafter/b0241341cbb918670d0e00bc75093f2f to your computer and use it in GitHub Desktop.
[JS] Vanilla enum generator
module.exports = function Enum (keys) {
let result = {};
keys.forEach((key, i) => {
result[key] = i;
result[i] = key;
});
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment