mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
11 lines
204 B
JavaScript
Vendored
11 lines
204 B
JavaScript
Vendored
function Buffer() {
|
|
throw new Error("Buffer is not included.");
|
|
}
|
|
Buffer.isBuffer = function() {
|
|
return false;
|
|
};
|
|
|
|
exports.INSPECT_MAX_BYTES = 50;
|
|
exports.SlowBuffer = Buffer;
|
|
exports.Buffer = Buffer;
|