mirror of
https://github.com/github/codeql.git
synced 2025-12-25 05:06:34 +01:00
6 lines
80 B
JavaScript
6 lines
80 B
JavaScript
function idMaker(){
|
|
var index = 0;
|
|
while(true)
|
|
yield index++;
|
|
}
|