UNPKG

@villedemontreal/http-request

Version:

HTTP utilities - send HTTP requests with proper headers, etc.

15 lines 400 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.configs = void 0; const path = require("path"); /** * Configurations for the application. */ class Configs { constructor() { this.root = path.normalize(`${__dirname}/..`); this.dataDirPath = `${this.root}/test-data`; } } exports.configs = new Configs(); //# sourceMappingURL=configs.js.map