This commit is contained in:
ct
2025-06-21 20:21:47 +08:00
parent 6a77a8b8c2
commit 8bd90c85dc
37 changed files with 1752 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
/**
* Generate an unique message ID.
*/
export const getMessageID = (() => {
let messageID = 0;
return () => messageID++;
})();