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

node-red-node-ui-table

Package Overview
Dependencies
Maintainers
3
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-node-ui-table - npm Package Compare versions

Comparing version 0.3.10 to 0.3.11

examples/7 quotationtest.json

17

node.js

@@ -62,3 +62,18 @@ /**

function HTML(config,dark) {
var configAsJson = JSON.stringify(config);
var configAsJson = JSON.stringify(config, (key, value) => {
// exclude the node description
if (key === "info") {
return undefined;
}
// replace single quotation mark (apostrophe) by html code in strings
if (typeof (value) === "string") {
return value.replace(/'/g, "'");
}
// all others leave unchanged
return value;
}
);
var mid = (dark) ? "_midnight" : "";

@@ -65,0 +80,0 @@ var html = String.raw`

2

package.json
{
"name": "node-red-node-ui-table",
"version": "0.3.10",
"version": "0.3.11",
"description": "Table UI widget node for Node-RED Dashboard",

@@ -5,0 +5,0 @@ "author": "Kazuhito Yokoi",

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