Skip to content

Instantly share code, notes, and snippets.

@rektide
Created August 26, 2014 21:56
Show Gist options
  • Save rektide/3a2f5801eaaed9de3ced to your computer and use it in GitHub Desktop.
Save rektide/3a2f5801eaaed9de3ced to your computer and use it in GitHub Desktop.
Expand a collection in lodash
lodash.chain([1,1,2,3,5,8,13,21])
.map(function(data){
return [data, data*2, data*3]
})
.flatten(true)
.value()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment