mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-22 22:49:45 +01:00
11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
import SparkMD5 from "spark-md5";
|
|
import ObjectID from "./object-id";
|
|
|
|
export default function () {
|
|
return new ObjectID().toHexString(); //cryptoRandom(12, "hex");
|
|
}
|
|
|
|
export function makeId(text) {
|
|
return SparkMD5.hash(text);
|
|
}
|