lambdaorm-base
Advanced tools
Comparing version 1.7.6 to 1.7.7
{ | ||
"name": "lambdaorm-base", | ||
"version": "1.7.6", | ||
"version": "1.7.7", | ||
"description": "ORM", | ||
@@ -5,0 +5,0 @@ "author": "Flavio Lionel Rita <flaviolrita@proton.me>", |
@@ -49,15 +49,15 @@ "use strict"; | ||
} | ||
const date = value instanceof Date ? value : new Date(value); | ||
const _format = format.toLowerCase(); | ||
const utc = new Date(value).toISOString(); | ||
if (_format === 'utc') { | ||
return utc; | ||
return date.toISOString(); | ||
} | ||
else if (_format === 'utc-without-ms') { | ||
return utc.replace(/\.\d{3}Z$/, '.000Z'); | ||
return date.toISOString().replace(/\.\d{3}Z$/, '.000Z'); | ||
} | ||
else if (_format === 'iso') { | ||
return LUXON.DateTime.fromISO(utc).toISO(); | ||
return LUXON.DateTime.fromJSDate(date).toISO(); | ||
} | ||
else { | ||
return LUXON.DateTime.fromISO(utc).toFormat(format); | ||
return LUXON.DateTime.fromJSDate(date).toFormat(format); | ||
} | ||
@@ -64,0 +64,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
361947