0.2.0 • Published 4 years ago

function-perf v0.2.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

perf-function

Measure the performance of an function easily

Installation

This is a Node.js module available through the npm registry. It can be installed using the npm or yarn command line tools.

npm install function-perf --save

Usage

import { Measure } from 'function-perf';

class Example {

  @Measure({ asyncFunction: true })
  async asyncFunctionToMeasure() {
    // ...
  }

  @Measure()
  functionToMeasure() {
    // ...
  }
}

run demo.ts to complete usage

Tests

npm install
npm test

Dependencies

None

Dev Dependencies

License

MIT