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