Files
illegitimate-bot/src/utils/Hypixel/uuid.ts
2024-01-15 11:00:11 +01:00

6 lines
146 B
TypeScript

function formatUuid(uuid: string): string {
return uuid.replace(/(.{8})(.{4})(.{4})(.{4})(.{12})/, "$1-$2-$3-$4-$5")
}
export { formatUuid }