UNPKG

nmonalisa-md-links

Version:

Pacote para validar links em arquivos markdown

11 lines (9 loc) 226 B
const path = require('path'); getFileRoute = (inputedPath) => { if (path.isAbsolute(inputedPath)) { return inputedPath } else { return path.resolve(process.cwd(), inputedPath) } } module.exports = getFileRoute;