@namchee/decora
Version:
Useful ECMAScript-compliant decorators to enhance JS (specifically, TypeScript) development experience
22 lines (21 loc) • 815 B
JavaScript
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports", "./src/benchmark", "./src/timeout"], factory);
}
})(function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.timeout = exports.benchmark = void 0;
const benchmark_1 = require("./src/benchmark");
const timeout_1 = require("./src/timeout");
exports.benchmark = benchmark_1.benchmark;
exports.timeout = timeout_1.timeout;
exports.default = {
benchmark: benchmark_1.benchmark,
timeout: timeout_1.timeout,
};
});