Skip to content

Commit

Permalink
🐛 Import EventEmitter from not 'node:stream' but 'node:events'
Browse files Browse the repository at this point in the history
Signed-off-by: kei-g <km.8k6ce+github@gmail.com>
  • Loading branch information
kei-g committed Nov 3, 2024
1 parent e5f3dc0 commit 81612a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/async-iterable-queue.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EventEmitter } from 'stream'
import { assert } from 'console'
import { EventEmitter } from 'node:events'
import { assert } from 'node:console'

/**
* 非同期反復可能な先入れ先出し型の待ち行列への非同期反復子
Expand Down

0 comments on commit 81612a0

Please sign in to comment.