New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sn-code-editor

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sn-code-editor - npm Package Compare versions

Comparing version 1.0.193 to 1.0.194

2

package.json
{
"name": "sn-code-editor",
"version": "1.0.193",
"version": "1.0.194",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/dist.js",

@@ -20,3 +20,4 @@ document.addEventListener("DOMContentLoaded", function(event) {

var componentManager;
var workingNote, clientData, lastValue;
var workingNote, clientData;
var lastValue, lastUUID;
var editor, modeInput, select;

@@ -48,2 +49,9 @@ var defaultMode = "javascript";

function onReceivedNote(note) {
if(note.uuid !== lastUUID) {
// Note changed, reset last values
lastValue = null;
initialLoad = true;
lastUUID = note.uuid;
}
workingNote = note;

@@ -50,0 +58,0 @@ // Only update UI on non-metadata updates.

Sorry, the diff of this file is too big to display

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