"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const path_1 = require("path");
function makeAbsolute(cwd, filePath) {
return path_1.isAbsolute(filePath) ? filePath : path_1.join(cwd, filePath);
}
exports.makeAbsolute = makeAbsolute;