Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hirestime

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hirestime

thin wrapper around process.hrtime

  • 5.0.6
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18K
increased by13.69%
Maintainers
1
Weekly downloads
 
Created
Source

hirestime Build Status

hirestime is a thin wrapper around the common time measuring APIs (node and the browser). Uses process.hrtime() on node, the performance API in the browser and falls back to Date if neither is available.

Installation

npm install hirestime

hirestime()

returns a function:

returnedFunction([unit])

Returns the elapsed time since the call of hirestime in milliseconds.
An optional unit parameter can be specified that will modify the unit in which the elapsed time will be calculated. Using the parameter is deprecated though, instead you should use the namend methods to specify the recalculation unit.

Possible Parameters (deprecated)
  • hirestime.S elapsed time in seconds
  • hirestime.MS elapsed time in milliseconds
  • hirestime.NS elapsed time in nanoseconds

Examples

By default the time is measured in milliseconds:

import hirestime from 'hirestime'

//startpoint of the time measurement
const getElapsed = hirestime()

setTimeout(_ => {
    //returns the elapsed milliseconds
    console.log(getElapsed())
}, 1000)

Specify the unit:

import hirestime from 'hirestime'

//startpoint of the time measurement
const getElapsed = hirestime()

setTimeout(_ => {
   //returns the elapsed seconds
   console.log(getElapsed.s())
   console.log(getElapsed.seconds())

   //returns the elapsed milliseconds
   console.log(getElapsed.ms())
   console.log(getElapsed.milliseconds())

   //returns the elapsed nanoseconds
   console.log(getElapsed.ns())
   console.log(getElapsed.nanoseconds())
}, 1000)

Keywords

FAQs

Package last updated on 24 Feb 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc