Spaces:
Build error
Build error
File size: 361 Bytes
c211499 |
1 2 3 4 5 6 7 8 9 10 |
import { getRuntime as getWebRuntime } from "./web-runtime.mjs";
import { ReadStream as FsReadStream } from 'node:fs';
export function getRuntime() {
const runtime = getWebRuntime();
function isFsReadStream(value) {
return value instanceof FsReadStream;
}
return { ...runtime, isFsReadStream };
}
//# sourceMappingURL=bun-runtime.mjs.map |