in string_rw.js [30:43]
function StringRW(sizerw, encoding) {
if (!(this instanceof StringRW)) {
return new StringRW(sizerw, encoding);
}
this.sizerw = sizerw;
this.encoding = encoding || 'utf8';
if (!this.sizerw.width) {
this.poolWriteInto = this.poolWriteVariableWidthInto;
} else {
this.poolWriteInto = this.poolWriteFixedWidthInto;
}
BufferRW.call(this);
}