UNPKG

@typed/test

Version:
6 lines (4 loc) 176 B
import { isAbsolute, join } from 'path' export function makeAbsolute(cwd: string, filePath: string): string { return isAbsolute(filePath) ? filePath : join(cwd, filePath) }