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

  • 0.2.2
  • Source
  • npm
  • Socket score

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

hirestime

...because there aren't enough hrtime wrappers yet.

Build Status

NPM

NPM

hirestime is a thin wrapper around process.hrtime() that does the clumsy handling of the returned array for you.

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 cause an recalculation.
possible parameters

  • hirestime.S elapsed time in seconds
  • hirestime.MS elapsed time in milliseoncds
  • hirestime.NS elapsed time in nanoseconds

Examples

var hirestime = require('../');

//startpoint of the time measurement
var getElapsed = hirestime();

setTimeout(function() {
    //returns the elapsed milliseconds
    console.log(getElapsed());
}, 1000);
var hirestime = require('../');

//startpoint of the time measurement
var getElapsed = hirestime();

setTimeout(function() {
   //returns the elapsed seconds
   console.log(getElapsed(hirestime.S));
}, 1000);

Keywords

FAQs

Package last updated on 05 Dec 2013

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