Socket
Socket
Sign inDemoInstall

unitimer

Package Overview
Dependencies
0
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    unitimer

Universal timer (Node.js and browser)


Version published
Maintainers
1
Install size
173 kB
Created

Readme

Source

unitimer

NPM version Standard File size

Universal timer (Node.js and browser). Super simple i.e.

var createTimer = require('unitimer')
var timer = createTimer().start()
setTimeout(function () {
  var ms = timer.stop() // ms ~= 1000.0
}, 1000)

API

timer.start()

Begin measuring interval.

timer.stop()

End the interval. Returns the elapsed time in milliseconds.

Note: start() and stop() can be called multiple times (which affects the total time, count, mean etc.).

timer.took()

Returns the most recent start / stop interval in milliseconds.

timer.mean()

Returns arithmetic average in milliseconds.

timer.total()

Returns the total time taken (an addition of start / stop intervals)

timer.count()

Returns the number of intervals measured.

timer.min()

Returns the minimum interval time recorded.

timer.max()

Returns the maximum interval time recorded.

timer.info(precision)

Returns a string summary of timer total, mean, total, min and max. precision is number of decimal places to show (optional).

timer.log(precision)

console.log of timer.info() (see above)

timer.stats()

Returns a stats object.

Keywords

FAQs

Last updated on 23 May 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc