mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-12-26 23:16:47 +01:00
bump exif and base64
This commit is contained in:
@@ -20,7 +20,7 @@ module.exports = function(RED) {
|
||||
if ( typeof value === "string") {
|
||||
var load = value.replace(/\s+/g,'');
|
||||
if (regexp.test(load) && (load.length % 4 === 0) ) {
|
||||
value = Buffer.from(load,'base64').toString('binary');
|
||||
value = Buffer.from(load,'base64').toString();
|
||||
RED.util.setMessageProperty(msg,node.property,value);
|
||||
node.send(msg);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name" : "node-red-node-base64",
|
||||
"version" : "0.3.1",
|
||||
"version" : "1.0.0",
|
||||
"description" : "A Node-RED node to pack and unpack objects to base64 format",
|
||||
"dependencies" : {
|
||||
},
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"name": "node-red-node-exif",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.1",
|
||||
"description": "A Node-RED node that extracts Exif information from image buffers.",
|
||||
"dependencies": {
|
||||
"exifreader": "^4.26.1"
|
||||
"exifreader": "^4.28.1"
|
||||
},
|
||||
"bundledDependencies": [
|
||||
"exifreader"
|
||||
|
||||
Reference in New Issue
Block a user