UNPKG

@typed/test

Version:
5 lines 195 B
import { isAbsolute, join } from 'path'; export function makeAbsolute(cwd, filePath) { return isAbsolute(filePath) ? filePath : join(cwd, filePath); } //# sourceMappingURL=makeAbsolute.js.map