Files
notesnook/packages/core/utils/id.js

6 lines
147 B
JavaScript
Raw Normal View History

import cryptoRandom from "crypto-random-string";
export default function () {
return cryptoRandom({ length: 16, type: "hex" }).toLowerCase();
}