Skip to content

Instantly share code, notes, and snippets.

@s00d
Created February 14, 2017 20:52
Show Gist options
  • Save s00d/5114cfe19ed1ee25d7d3bd000e8f3951 to your computer and use it in GitHub Desktop.
Save s00d/5114cfe19ed1ee25d7d3bd000e8f3951 to your computer and use it in GitHub Desktop.
export default map => Array.isArray(map)
? map.map(key => ({ key, val: key }))
: Object.keys(map).map(key => ({ key, val: map[key] }))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment