All files / decorators timer.js

83.33% Statements 20/24
100% Branches 7/7
90% Functions 9/10
94.74% Lines 18/19
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30  1x 3x 3x   6x 3x     1x 1x   1x 1x   3x 3x 3x 3x 3x 3x 3x           1x 1x  
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
    return new (P || (P = Promise))(function (resolve, reject) {
        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
        function rejected(value) { try { step(generator.throw(value)); } catch (e) { reject(e); } }
        function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
        step((generator = generator.apply(thisArg, _arguments)).next());
    });
};
const Debug = require("debug");
const debug = Debug('overland:core');
function timer(event) {
    return function (target, key, descriptor) {
        return {
            value: function (...args) {
                return __awaiter(this, void 0, void 0, function* () {
                    debug(`${event}ing`);
                    const boot = process.hrtime();
                    const res = yield descriptor.value.apply(this, args);
                    const [sec, ns] = process.hrtime(boot);
                    debug(`${event}ed (took ${(ns / 1000000).toFixed(3)} ms)`);
                    return res;
                });
            }
        };
    };
}
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = timer;