11 lines
243 B
JavaScript
Raw Permalink Normal View History

2025-04-19 15:38:48 +08:00
function Buffer() {
throw new Error('Buffer is not included.');
}
Buffer.isBuffer = function () {
return false;
};
var INSPECT_MAX_BYTES = 50;
export { Buffer, INSPECT_MAX_BYTES, Buffer as SlowBuffer };
//# sourceMappingURL=buffer.js.map