Skip to content

Commit 8e8f28f

Browse files
authoredJan 27, 2022
Use exist method to be consistent with Stack (trekhleb#708)

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/data-structures/queue/Queue.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default class Queue {
2121
* @return {*}
2222
*/
2323
peek() {
24-
if (!this.linkedList.head) {
24+
if (this.isEmpty()) {
2525
return null;
2626
}
2727

0 commit comments

Comments
 (0)
Please sign in to comment.