Skip to content

Instantly share code, notes, and snippets.

@gre
Last active September 1, 2015 21:06
Show Gist options
  • Save gre/52c352731ad29d9024b9 to your computer and use it in GitHub Desktop.
Save gre/52c352731ad29d9024b9 to your computer and use it in GitHub Desktop.
const ENUM = `
BAR
FOO
WHATEVER
`;
const enumMap = {};
ENUM.split("\n").forEach(name => enumMap[name] = name);
module.exports = enumMap;
@gre
Copy link
Author

gre commented Aug 12, 2015

Usage example

const { FOO, BAR } = require("./constants");

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment