Open
Description
I'm testing this with a simple text file:
wahtawever
and the example given in the readme:
var uuencode = require ('js-uuencode');
var fs = require ('fs');
var inFile = './file.txt';
function test(){
data = "";
var infs = fs.createReadStream(inFile)
.on('open', function (){
infs
.pipe(new uuencode({encoder: true}))
.on('data', function (d){
})
.pipe(new uuencode({decoder: true}))
.on('data', function (d){
data += d;
})
.on('end', function () {
console.log("Decoded: "+data);
});
})
};
test();
The output i get is:
Decoded: ↑??☺e?♣♣?<r?¶?v▬?F↨vWfW
Obviously not correct. Is this project still going to be maintained/completed?
Metadata
Metadata
Assignees
Labels
No labels