UNPKG

mr-case

Version:

55 functions to seamlessly transform strings, arrays, and object keys between different cases (camelCase, snake_case, kebab-case, PascalCase, Title Case, and more), clean and format text, extract URL components, and perform common text operations like mas

9 lines (7 loc) 267 B
function randomCase(str) { if (typeof str !== 'string') throw new Error('Input must be a string'); return str.split('').map(char => Math.random() > 0.5 ? char.toUpperCase() : char.toLowerCase() ).join(''); } module.exports = randomCase;