clock-util

1.0.2 • Public • Published

clock-util

An extended Clock with additional functionality

installation

> npm install clock-util

usage

default to system clock:

const ClockUtil = require('clock-util')
const clock = new ClockUtil()

or wrap any Clock:

const fixedClock = {now: () => 123456}
const clock = new ClockUtil(fixedClock)

now we have some extra utility methods available:

// Returns the timestamp in milliseconds since the Unix epoch from the current clock time
// this is the same as Clock interface
clock.now()
// => 123456
 
clock.date() // Returns a Date object from the current clock time
// => new Date(123456)
 
clock.nowSeconds() // Returns the number of seconds since the Unix epoch
// => 123

license

ISC

Dependencies (1)

Dev Dependencies (8)

Package Sidebar

Install

npm i clock-util

Weekly Downloads

24

Version

1.0.2

License

ISC

Last publish

Collaborators

  • suarasaur