mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
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;
|