Socket
Book a DemoInstallSign in
Socket

clock-util

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clock-util

An extended Clock with additional functionality

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
16
128.57%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

date

FAQs

Package last updated on 13 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts