in fixed_width_rw.js [30:37]
function FixedWidthRW(length, readFrom, writeInto) {
if (!(this instanceof FixedWidthRW)) {
return new FixedWidthRW(length, readFrom, writeInto);
}
this.length = length;
// BufferRW.call(this);
}