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

8 lines
102 B
JavaScript

// @ts-check
let now = Date.now()
module.exports.makeTxnId = function makeTxnId() {
return now++
}