mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
export function randomizeCase(input: string): string {
|
|
return input
|
|
.split('')
|
|
.map((char) =>
|
|
Math.random() < 0.5 ? char.toLowerCase() : char.toUpperCase()
|
|
)
|
|
.join('');
|
|
}
|