Skip to content

Instantly share code, notes, and snippets.

@jonvuri
Created November 14, 2012 12:24
Show Gist options
  • Save jonvuri/4071824 to your computer and use it in GitHub Desktop.
Save jonvuri/4071824 to your computer and use it in GitHub Desktop.
It's two functions
function makeSplat(length) {
var splat = [];
while (length-- > 0) {
splat[length] = _;
}
return splat;
}
function makeSplat(length) {
return _.map(_.range(0, length), function () { return _; });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment