You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
204 B

4 years ago
  1. function Buffer() {
  2. throw new Error("Buffer is not included.");
  3. }
  4. Buffer.isBuffer = function() {
  5. return false;
  6. };
  7. exports.INSPECT_MAX_BYTES = 50;
  8. exports.SlowBuffer = Buffer;
  9. exports.Buffer = Buffer;