diff options
author | mat <github@matdoes.dev> | 2022-04-23 14:10:08 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-04-23 14:10:08 -0500 |
commit | 57cb3e84f9c8f513665e364459c8ff342d9b3d74 (patch) | |
tree | 240f7687e69f5d95543e5993036c2165678fbc85 /src/util.ts | |
parent | 6a7249c7b46aab070d029e22bee57e1e314001f5 (diff) | |
download | skyblock-api-57cb3e84f9c8f513665e364459c8ff342d9b3d74.tar.gz skyblock-api-57cb3e84f9c8f513665e364459c8ff342d9b3d74.tar.bz2 skyblock-api-57cb3e84f9c8f513665e364459c8ff342d9b3d74.zip |
add some missing things to `claimed`
Diffstat (limited to 'src/util.ts')
-rw-r--r-- | src/util.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/util.ts b/src/util.ts index 4d40cc0..91f202d 100644 --- a/src/util.ts +++ b/src/util.ts @@ -1,6 +1,5 @@ -/** - * Random utility functions that are not related to Hypixel - */ +// Random utility functions that are not related to Hypixel + export function undashUuid(uuid: string): string { return uuid.replace(/-/g, '').toLowerCase() |