You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

formatDate.filter.js 231B

123456789
  1. /**
  2. * Created by robin on 12/22/16.
  3. */
  4. angular.module('app').filter('formatDate', ['DateUtilsBusiness', function(DateUtilsBusiness) {
  5. return function(date)
  6. {
  7. return DateUtilsBusiness.formatDate(date);
  8. };
  9. }]);