Socket
Socket
Sign inDemoInstall

lambdaorm-base

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lambdaorm-base - npm Package Compare versions

Comparing version 1.7.5 to 1.7.6

2

package.json
{
"name": "lambdaorm-base",
"version": "1.7.5",
"version": "1.7.6",
"description": "ORM",

@@ -5,0 +5,0 @@ "author": "Flavio Lionel Rita <flaviolrita@proton.me>",

@@ -54,7 +54,10 @@ "use strict";

}
else if (_format === 'utc-without-ms') {
return utc.replace(/\.\d{3}Z$/, '.000Z');
}
else if (_format === 'iso') {
return LUXON.DateTime.fromISO(utc, { zone: 'utc' }).toISO();
return LUXON.DateTime.fromISO(utc).toISO();
}
else {
return LUXON.DateTime.fromISO(utc, { zone: 'utc' }).toFormat(format);
return LUXON.DateTime.fromISO(utc).toFormat(format);
}

@@ -61,0 +64,0 @@ }

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc