🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
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

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