bump exif and base64

This commit is contained in:
Dave Conway-Jones
2025-04-17 10:35:57 +01:00
parent 9b94ac25dc
commit a172e6bad1
3 changed files with 4 additions and 4 deletions

View File

@@ -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);
}

View File

@@ -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" : {
},

View File

@@ -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"