Skip to content

Instantly share code, notes, and snippets.

@krrishd
Last active August 29, 2015 14:05
Show Gist options
  • Save krrishd/f40044e5e006f845b412 to your computer and use it in GitHub Desktop.
Save krrishd/f40044e5e006f845b412 to your computer and use it in GitHub Desktop.
For when Angular is dumb and doesn't allow filtering of object maps.
$scope.objectToArray = (function() {
function convert(object) {
var keys = Object.keys(object);
var array = [];
keys.forEach(function(i) {
array.push(object[i]);
});
return array;
}
return function(object) {
return (convert(object));
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment