Skip to content

Commit a172e6b

Browse files
committed
bump exif and base64
1 parent 9b94ac2 commit a172e6b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

parsers/base64/70-base64.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = function(RED) {
2020
if ( typeof value === "string") {
2121
var load = value.replace(/\s+/g,'');
2222
if (regexp.test(load) && (load.length % 4 === 0) ) {
23-
value = Buffer.from(load,'base64').toString('binary');
23+
value = Buffer.from(load,'base64').toString();
2424
RED.util.setMessageProperty(msg,node.property,value);
2525
node.send(msg);
2626
}

parsers/base64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "node-red-node-base64",
3-
"version" : "0.3.1",
3+
"version" : "1.0.0",
44
"description" : "A Node-RED node to pack and unpack objects to base64 format",
55
"dependencies" : {
66
},

utility/exif/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "node-red-node-exif",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "A Node-RED node that extracts Exif information from image buffers.",
55
"dependencies": {
6-
"exifreader": "^4.26.1"
6+
"exifreader": "^4.28.1"
77
},
88
"bundledDependencies": [
99
"exifreader"

0 commit comments

Comments
 (0)