forked from Laboratoria/DEV003-md-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
31 lines (27 loc) · 762 Bytes
/
index.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
const api = require("./api.js");
const mdLinks = (path, options) => {
// return new Promise(function (resolve, reject) {
// constsuccess = true;
// if (success) {
// resolve("exito");
// } else {
// reject("error");
// const miNombre = new String("juan");
// // 'juan'
// const miNumero = new Number(9);
// const miFecha = new Date();
// // fecha de hoy ...no
let rutaAbsoluta = path;
if (api.pathexist(path) === false) {
throw Error("La ruta no existe");
}
if (api.absolutePath(path) === false) {
rutaAbsoluta = api.absolute(path);
}
if (api.mdFile(path) === false) {
throw Error("No es un archivo MarkDown");
}
// [{ - - - }]
// [{ - - - - -}, ...]
};
console.log(mdLinks("./README.md"));