9 lines
195 B
TypeScript
Raw Normal View History

export function randomizeCase(input: string): string {
2024-07-14 00:23:30 +01:00
return input
.split('')
.map((char) =>
Math.random() < 0.5 ? char.toLowerCase() : char.toUpperCase()
)
.join('');
}