UNPKG

mochapack

Version:
12 lines 428 B
"use strict"; exports.__esModule = true; exports.ensureAbsolutePath = void 0; var path_1 = require("path"); // eslint-disable-next-line import/prefer-default-export function ensureAbsolutePath(path, basePath) { return path_1.posix.isAbsolute(path) || path_1.win32.isAbsolute(path) ? path : (0, path_1.join)(basePath, path); } exports.ensureAbsolutePath = ensureAbsolutePath; //# sourceMappingURL=paths.js.map