mirror of
https://github.com/github/codeql.git
synced 2026-07-26 05:29:42 +02:00
10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
function cleanupLater(delay, cb) {
|
|
setTimeout(function() {
|
|
cleanupNow();
|
|
// GOOD: no need to guard the invocation
|
|
cb();
|
|
}, delay)
|
|
}
|
|
|
|
cleanupLater(function(){console.log("Cleanup done")});
|