Skip to content

Instantly share code, notes, and snippets.

@smithamax
Created February 4, 2016 01:13
Show Gist options
  • Save smithamax/fa890c7dd108effcd916 to your computer and use it in GitHub Desktop.
Save smithamax/fa890c7dd108effcd916 to your computer and use it in GitHub Desktop.
universalMapper
function universalMapper(obj, fn) {
if (!obj) return obj;
if (Array.isArray(obj)) return obj.map(fn);
return fn(obj);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment