mirror of https://github.com/webpack/webpack.git
eslint fix
This commit is contained in:
parent
695237710e
commit
37d6a32e23
|
@ -44,7 +44,7 @@ class Queue {
|
|||
dequeue() {
|
||||
let result = this._iterator.next();
|
||||
const isInvalidIterator = result.done && this._set.size > 0;
|
||||
if(isInvalidIterator){
|
||||
if (isInvalidIterator) {
|
||||
this._iterator = this._set[Symbol.iterator]();
|
||||
result = this._iterator.next();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue