mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 16:56:14 -04:00
fix(sec): switched to cryptographically secure random
This commit is contained in:
parent
03a7e8c42d
commit
74e5758735
2 changed files with 11 additions and 4 deletions
|
@ -1,5 +1,7 @@
|
|||
import {random} from './random'
|
||||
|
||||
const capitalise = (s: string) => s.charAt(0).toUpperCase() + s.slice(1)
|
||||
|
||||
const shuffle = (s: string) => s.split('').sort(() => 0.5 - Math.random()).join('')
|
||||
const shuffle = (s: string) => s.split('').sort(() => 0.5 - random()).join('')
|
||||
|
||||
export {capitalise, shuffle}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue