Minor modification.

This commit is contained in:
Viktor Kovacs 2021-03-29 09:55:53 +02:00
parent 404bc85271
commit d80b97cf85

View File

@ -2,7 +2,7 @@ var fs = require ('fs');
process.chdir (__dirname);
global.atob = function (base64String) {
return Buffer.from (base64String, 'base64').toString('binary')
return Buffer.from (base64String, 'base64').toString('binary');
};
global.Blob = function () {