Skip to content

Instantly share code, notes, and snippets.

@infurno
Created October 24, 2014 20:26
Show Gist options
  • Select an option

  • Save infurno/6122e9be5ea9c7f00c6b to your computer and use it in GitHub Desktop.

Select an option

Save infurno/6122e9be5ea9c7f00c6b to your computer and use it in GitHub Desktop.
filter to convert string date to pretty date in Angularjs
app.filter('dateFormat', function($filter)
{
return function(input)
{
if(input == null){ return ""; }
var _date = $filter('date')(new Date(input), 'MMM dd yyyy');
return _date.toUpperCase();
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment