Skip to content

Instantly share code, notes, and snippets.

@azder
Created June 25, 2014 10:53
Show Gist options
  • Save azder/35d37c1a6abac1900a70 to your computer and use it in GitHub Desktop.
Save azder/35d37c1a6abac1900a70 to your computer and use it in GitHub Desktop.
fun
navArray = function (name) {
return function (obj) {
var value = ob.nav(name)(obj);
if (is.nil(value)) {
return [];
}
if (is.array(value)) {
return value;
}
return [value];
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment