node-red-contrib-agilite-utils
Advanced tools
Comparing version 5.4.2 to 6.1.0
{ | ||
"name": "node-red-contrib-agilite-utils", | ||
"license": "MIT", | ||
"version": "5.4.2", | ||
"description": "A set of Agilit-e Node-RED Nodes to perform various adhoc tasks without calling 3rd party web services", | ||
"homepage": "https://agilite.io", | ||
"author": "Agilit-e", | ||
"_from": "node-red-contrib-agilite-utils@5.4.2", | ||
"_id": "node-red-contrib-agilite-utils@5.4.2", | ||
"_inBundle": false, | ||
"_integrity": "sha512-0iQe1blBCxuAfIE7unYJjehy5Ib/IviHInfhBiPa6C9WTAeqqSNsRLUgc9/lEQ+AzZKNRfNcSJU6ONQNI/cmlA==", | ||
"_location": "/node-red-contrib-agilite-utils", | ||
"_phantomChildren": { | ||
"chai": "4.1.2", | ||
"mocha": "5.1.1" | ||
}, | ||
"_requested": { | ||
"type": "version", | ||
"registry": true, | ||
"raw": "node-red-contrib-agilite-utils@5.4.2", | ||
"name": "node-red-contrib-agilite-utils", | ||
"escapedName": "node-red-contrib-agilite-utils", | ||
"rawSpec": "5.4.2", | ||
"saveSpec": null, | ||
"fetchSpec": "5.4.2" | ||
}, | ||
"_requiredBy": [ | ||
"/" | ||
], | ||
"_resolved": "https://registry.npmjs.org/node-red-contrib-agilite-utils/-/node-red-contrib-agilite-utils-5.4.2.tgz", | ||
"_shasum": "21f1579a20a81452ab17029908bed988595a2d51", | ||
"_spec": "node-red-contrib-agilite-utils@5.4.2", | ||
"_where": "/Users/armandsmit/Documents/SourceTree/agilite/agilite-node-red", | ||
"author": { | ||
"name": "Agilit-e" | ||
}, | ||
"bundleDependencies": false, | ||
"contributors": [ | ||
@@ -22,6 +46,10 @@ { | ||
"jde-date-time": "0.0.7", | ||
"lodash": "4.17.10", | ||
"md5": "2.2.1", | ||
"mustache": "2.3.0", | ||
"type-detect": "4.0.8", | ||
"lodash": "4.17.10" | ||
"type-detect": "4.0.8" | ||
}, | ||
"deprecated": false, | ||
"description": "A set of Agilit-e Node-RED Nodes to perform various adhoc tasks without calling 3rd party web services", | ||
"homepage": "https://agilite.io", | ||
"keywords": [ | ||
@@ -42,2 +70,4 @@ "node-red", | ||
], | ||
"license": "MIT", | ||
"name": "node-red-contrib-agilite-utils", | ||
"node-red": { | ||
@@ -51,3 +81,4 @@ "nodes": { | ||
} | ||
} | ||
}, | ||
"version": "6.1.0" | ||
} |
@@ -9,2 +9,3 @@ module.exports = function(RED){ | ||
const typeDetect = require('type-detect'); //TODO: Require typeof module from npm here | ||
const md5 = require('md5'); | ||
@@ -21,4 +22,7 @@ this.on("input", function(msg){ | ||
case "1": | ||
typeResult = typeDetect(msg.payload); | ||
break; | ||
typeResult = typeDetect(msg.payload); | ||
break; | ||
case "2": | ||
typeResult = md5(msg.payload); | ||
break; | ||
} | ||
@@ -25,0 +29,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31525
297
5
+ Addedmd5@2.2.1
+ Addedcharenc@0.0.2(transitive)
+ Addedcrypt@0.0.2(transitive)
+ Addedis-buffer@1.1.6(transitive)
+ Addedmd5@2.2.1(transitive)