7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
// lib/platforms.ts
|
|
export function normalizePlatformKey(p?: string | null): string {
|
|
return (p ?? "")
|
|
.trim()
|
|
.toUpperCase()
|
|
.replace(/[^A-Z0-9]/g, "");
|
|
} |