Created
May 11, 2017 12:41
-
-
Save cristhian-net/c7bc4d5d02c818e8f08f961694a6db09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as moment from 'moment'; | |
export class FechaValueConverter { | |
public toView(value, format) { | |
if(value){ | |
format = format || 'DD/MM/YYYY hh:mm A'; | |
return moment(value).format(format); | |
} | |
} | |
public fromView(value, format) { // 'DD/MM/YYYY hh:mm A' | |
if(value){ | |
format = format || 'DD/MM/YYYY hh:mm A'; | |
return moment(value, format).toDate(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment