Skip to content

Instantly share code, notes, and snippets.

@dbani-dev
Created March 23, 2015 05:43
Show Gist options
  • Save dbani-dev/7a77f98b2d1c2ed11343 to your computer and use it in GitHub Desktop.
Save dbani-dev/7a77f98b2d1c2ed11343 to your computer and use it in GitHub Desktop.
function mapWith (fn) {
return function (array) {
return _.map(array, fn)
}
}
var squareAll = mapWith(function (n) { return n * n });
squareAll([1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment