mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 07:16:15 -04:00
5 lines
188 B
TypeScript
5 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}
|