6 lines
141 B
Plaintext
6 lines
141 B
Plaintext
import cryptoRandomString from 'crypto-random-string';
|
|
|
|
export default function uniqueString() {
|
|
return cryptoRandomString({length: 32});
|
|
}
|