Socket
Socket
Sign inDemoInstall

@mongoosejs/studio

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mongoosejs/studio - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

21

frontend/src/edit-date/edit-date.js

@@ -8,3 +8,22 @@ 'use strict';

props: ['value'],
emits: ['input']
emits: ['input'],
computed: {
valueAsLocalString() {
if (this.value == null) {
return this.value;
}
const date = new Date(this.value);
return [
date.getFullYear(),
'-',
(date.getMonth() + 1).toString().padStart(2, '0'),
'-',
date.getDate().toString().padStart(2, '0'),
'T',
date.getHours().toString().padStart(2, '0'),
':',
date.getMinutes().toString().padStart(2, '0')
].join('');
}
}
});

2

package.json
{
"name": "@mongoosejs/studio",
"version": "0.0.8",
"version": "0.0.9",
"dependencies": {

@@ -5,0 +5,0 @@ "archetype": "0.13.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