This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Description
readonly attribute unsigned long length;
In buffer.md, the length of Buffer should be readonly, but actually it can be modified.
var buff = new Buffer(8);
var original = buff.length;
buff.length = buff.length + 1;
print(original);
print(buff.length);
The print result is 9, not the expected 8.