Skip to content

Instantly share code, notes, and snippets.

@freshcutdevelopment
Created September 25, 2016 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freshcutdevelopment/94ee1f5f75eda517887fe6f4e3f53197 to your computer and use it in GitHub Desktop.
Save freshcutdevelopment/94ee1f5f75eda517887fe6f4e3f53197 to your computer and use it in GitHub Desktop.
Date format Aurelia ValueConverter using moment.js
import moment from 'moment';
export class DateFormatValueConverter {
toView(value) {
return moment(value).format('M/D/YYYY');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment