out-of-your-element/matrix/txnid.js

8 lines
102 B
JavaScript
Raw Normal View History

2023-04-30 12:57:30 +00:00
// @ts-check
let now = Date.now()
module.exports.makeTxnId = function makeTxnId() {
2023-04-30 12:57:30 +00:00
return now++
}