mirror of
https://gitdab.com/cadence/out-of-your-element.git
synced 2025-09-09 20:03:04 +02:00
7 lines
102 B
JavaScript
7 lines
102 B
JavaScript
// @ts-check
|
|
|
|
let now = Date.now()
|
|
|
|
module.exports.makeTxnId = function makeTxnId() {
|
|
return now++
|
|
}
|