Skip to content

Instantly share code, notes, and snippets.

@lgrayland
Last active November 4, 2015 14:11
Show Gist options
  • Save lgrayland/a067564a15aae36f48ab to your computer and use it in GitHub Desktop.
Save lgrayland/a067564a15aae36f48ab to your computer and use it in GitHub Desktop.
angular filter to convert unix timestamp using moment.js
.filter('fromUnix', function() {
return function (date) {
return moment.unix(date).format("DD/MM/YYYY");
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment