File size: 155 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import Stream from 'node:stream';
const streamDestructionSupported = 'destroy' in Stream.Readable.prototype;
function fetch(){
}
export default fetch;
|
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import Stream from 'node:stream';
const streamDestructionSupported = 'destroy' in Stream.Readable.prototype;
function fetch(){
}
export default fetch;
|