mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
19 lines
362 B
TypeScript
19 lines
362 B
TypeScript
import { getRandomByte } from "./helpers/getRandomByte";
|
|
|
|
/**
|
|
* Generate a random IP address
|
|
* Does not check to see if the IP already exists in the game
|
|
*/
|
|
export function createRandomIp(): string {
|
|
const ip: string =
|
|
getRandomByte(99) +
|
|
"." +
|
|
getRandomByte(9) +
|
|
"." +
|
|
getRandomByte(9) +
|
|
"." +
|
|
getRandomByte(9);
|
|
|
|
return ip;
|
|
}
|