tiny-clock-util

1.0.0 • Public • Published

tiny-clock-util

An extended Clock with additional functionality

installation

> npm install tiny-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

Package Sidebar

Install

npm i tiny-clock-util

Weekly Downloads

2

Version

1.0.0

License

ISC

Unpacked Size

5.54 kB

Total Files

6

Last publish

Collaborators

  • cosmosrat