Sergey
Results
1
comments of
Sergey
in /lib/parser ``` Parser.prototype.parseField = function(field, buffer) { var value; if ((field.type === 'C')&&(this.encodingFunction)) { value = (this.encodingFunction(buffer)).trim(); } else { value = (buffer.toString(this.encoding)).trim(); } if (field.type === 'N') {...