Skip to content

Instantly share code, notes, and snippets.

@mrbobbybryant
Created June 29, 2016 00:14
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 mrbobbybryant/8182c407dd0c0d4093920f3d49e81545 to your computer and use it in GitHub Desktop.
Save mrbobbybryant/8182c407dd0c0d4093920f3d49e81545 to your computer and use it in GitHub Desktop.
function nodeListMap(data) {
return function(callback) {
return [].map.call( data, callback );
}
}
function nodeListMap(data, callback) {
return [].map.call( data, callback );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment