mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-24 02:02:35 -04:00
6 lines
188 B
TypeScript
6 lines
188 B
TypeScript
const capitalise = (s: string) => s.charAt(0).toUpperCase() + s.slice(1)
|
|
|
|
const shuffle = (s: string) => s.split('').sort(() => 0.5 - Math.random()).join('')
|
|
|
|
export {capitalise, shuffle}
|