astimer

2.0.2 • Public • Published

astimer

Build Status npm Version JS Standard

Async timer

Installation

$ npm install astimer --save

Usage

'use strict'
 
const astimer = require('astimer')
 
async function tryExample () {
  let timer = astimer()
 
  // Start measuring
  timer.tick()
 
  // Do something async
  /* ... */
 
  // Get took time from last tick
  let took = timer.tick()
  console.log(`Time took: ${took}ms`) // show time from last tick
}
 
tryExample()
 

License

This software is released under the MIT License.

Links

Readme

Keywords

none

Package Sidebar

Install

npm i astimer

Weekly Downloads

42

Version

2.0.2

License

MIT

Unpacked Size

10.9 kB

Total Files

25

Last publish

Collaborators

  • okunishinishi