fix: rename var nextId
This commit is contained in:
parent
0379757dcd
commit
99b355f7a1
|
@ -47,9 +47,9 @@ function idFactory(start = 1) {
|
||||||
let id = start;
|
let id = start;
|
||||||
|
|
||||||
return function nextId() {
|
return function nextId() {
|
||||||
const nextId = id;
|
const _nextId = id;
|
||||||
id += 1;
|
id += 1;
|
||||||
return nextId;
|
return _nextId;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue