stamp
v4.0.2
Published
Generate unique meta information for change in a system
Downloads
489
Maintainers
Readme
stamp
Generate unique meta information for change in a system, monotonic timestamps
const stamp = require('stamp')
// stamp.create()
// results in 946725040140
// fires when a stamp closes (is handled)
stamp.on(() => console.log('closing'))
// fires stamp listeners
stamp.close()
const parsed = stamp.parse(stamp)
// returns a valid date time stamp
// remove all listeners
stamp.clear()
// offset internal clock
stamp.offset = 100 // add 100 ms to timestamps
// check if listeners are in progress
stamp.inProgress // true or false