Skip to content

Instantly share code, notes, and snippets.

@carbide-public
Created January 10, 2017 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carbide-public/1021040f629c978a4ed6acbf918f3e60 to your computer and use it in GitHub Desktop.
Save carbide-public/1021040f629c978a4ed6acbf918f3e60 to your computer and use it in GitHub Desktop.
untitled
import {transform} from 'lodash';
const STATES = {
AZ: 'AZ',
CO: 'CO',
};
const values = transform(STATES, (memo, value, key) => {
memo[key] = value;
return memo;
}, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment