forked from Laboratoria/DEV003-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.js
58 lines (45 loc) · 1.33 KB
/
api.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const fs = require("fs");
const path = require("path");
const mdLinks = (path, options) => {
// aqui va toda la logica de md links
// llamar a md links
};
mdLinks("README.md", { validate: true });
// CONSULTAR SI LA RUTA EXISTE
const pathexist = (mdPath) => fs.existsSync(mdPath);
//return fs.existsSync(mdPath);
console.log(pathexist("README.md"));
//VERIFICAR SI LA RUTA ES ABSOLUTA O NO
const absolutePath = (mdPath) => path.isAbsolute(mdPath);
// return path.isAbsolute(mdPath);
console.log(absolutePath("README.md"));
// SINO ES ABSOLUTA CAMBIAR A ABSOLUTA
const absolute = (mdPath) => path.resolve(mdPath);
console.log(absolute("README.md"));
//leer el archivo ir a const mdlinks linea 4
const readFile = (mdPath) => {
return new Promise((resolve, reject) => {
fs.readFile(mdPath, (err, data) => {
if (err) {
reject("No fue posible leer el contenido");
} else {
resolve(data);
}
});
});
};
console.log(readFile("README.md"));
//VERIFICAR SI ES UN ARCHIVO MARKDOWN
const mdFile = (mdPath) => path.extname(mdPath);
console.log(mdFile("README.md"));
if (mdFile(".md") === ".md") console.log("Si es un archivo markDown");
else console.log("No es un archivo markDown");
// verificar si tiene links
//obtener los link
module.exports = {
mdLinks,
pathexist,
absolutePath,
absolute,
mdFile,
};