mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-22 22:49:45 +01:00
6 lines
147 B
JavaScript
6 lines
147 B
JavaScript
import cryptoRandom from "crypto-random-string";
|
|
|
|
export default function () {
|
|
return cryptoRandom({ length: 16, type: "hex" }).toLowerCase();
|
|
}
|