* Couple more toString() -> decode() updates

This commit is contained in:
Bryan Ashby 2015-11-01 13:55:59 -07:00
parent 46088a9f02
commit f318dc8da2
4 changed files with 4 additions and 5 deletions

View file

@ -9,6 +9,7 @@ var assert = require('assert');
var binary = require('binary');
var fs = require('fs');
var util = require('util');
var iconv = require('iconv-lite');
// :TODO: Remove "Ftn" from most of these -- it's implied in the module
exports.stringFromFTN = stringFromFTN;
@ -29,7 +30,7 @@ function stringFromFTN(buf, encoding) {
}
}
return buf.slice(0, nullPos).toString(encoding || 'utf-8');
return iconv.decode(buf.slice(0, nullPos), encoding || 'utf-8');
}