MOBILE-4131 time: Return ISO string in toDatetimeFormat function
parent
57f10bff4a
commit
983ba9466a
|
@ -255,9 +255,7 @@ export class CoreTimeUtilsProvider {
|
||||||
* @return Formatted time.
|
* @return Formatted time.
|
||||||
*/
|
*/
|
||||||
toDatetimeFormat(timestamp?: number): string {
|
toDatetimeFormat(timestamp?: number): string {
|
||||||
timestamp = timestamp || Date.now();
|
return moment(timestamp || Date.now()).toISOString();
|
||||||
|
|
||||||
return this.userDate(timestamp, 'YYYY-MM-DDTHH:mm:ss.SSS', false) + 'Z';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue