stream: add semicolons to imports

This commit is contained in:
wukko
2024-04-27 18:51:12 +06:00
parent d09e6a3110
commit 656c0a3495
2 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
import { request } from 'undici'
import { Readable } from 'node:stream'
import { assert } from 'console'
import { getHeaders } from './shared.js'
import { request } from 'undici';
import { Readable } from 'node:stream';
import { assert } from 'console';
import { getHeaders } from './shared.js';
const CHUNK_SIZE = BigInt(8e6); // 8 MB
const min = (a, b) => a < b ? a : b;