SpaceNinjaServer/src/helpers/skinLookupTable.ts
AMelonInsideLemon 02f0935710
All checks were successful
Build Docker image / docker-arm64 (push) Successful in 1m27s
Build / build (push) Successful in 1m0s
Build Docker image / docker-amd64 (push) Successful in 42s
feat(webui): skins (#2816)
Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com>
Reviewed-on: #2816
Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com>
Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
2025-10-09 23:02:09 -07:00

9 lines
269 B
TypeScript

import { ExportCustoms } from "warframe-public-export-plus";
import { catBreadHash } from "./stringHelpers.ts";
export const skinLookupTable: Record<number, string> = {};
for (const key of Object.keys(ExportCustoms)) {
skinLookupTable[catBreadHash(key)] = key;
}