JSPM

larvitutils

0.0.5beta
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3288
  • Score
    100M100P100Q107508F

Misc utilites

Package Exports

  • larvitutils

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (larvitutils) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

larvitutils

Misc utilities

hrtimeToMs()

Used to convert hrtime() calls to milliseconds, since hrtime() output is messy (seconrds + nanoseconrds)

Usage:

var utils     = require('larvitutils'),
    startTime = process.hrtime();

setTimeout(function() {
  console.log('benchmark took %d ms', utils.hrtimeToMs(startTime, 4));
  // benchmark took 34.0005 ms
}, 34);