mirror of
https://github.com/github/codeql.git
synced 2026-01-28 13:53:10 +01: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")});
|