Skip to content

Commit ceff6a7

Browse files
committed
fix: unused import
1 parent c8f38be commit ceff6a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/asynciterable/buffercountortime-spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import '../asynciterablehelpers.js';
2-
import { of, concat, interval, toArray } from 'ix/asynciterable/index.js';
3-
import { bufferCountOrTime, delay, take } from 'ix/asynciterable/operators/index.js';
2+
import { of, concat, toArray } from 'ix/asynciterable/index.js';
3+
import { bufferCountOrTime, delay } from 'ix/asynciterable/operators/index.js';
44

55
test('buffer count behaviour', async () => {
66
const source = of(1, 2, 3, 4, 5, 6, 7, 8, 9, 0);

0 commit comments

Comments
 (0)