mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-23 09:42:53 +02:00
6073964768
This is BN15. It is a really big change; see the PR for all the details.
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
/**
|
|
* Allows time to pass
|
|
*/
|
|
export function sleep(ms: number): Promise<void> {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|