4.0.2 • Published 7 years ago

stamp v4.0.2

Weekly downloads
28
License
ISC
Repository
github
Last release
7 years ago

stamp

Generate unique meta information for change in a system, monotonic timestamps

Build Status js-standard-style npm version Coverage Status

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