UNPKG

markdown-notes-tree

Version:

Generate Markdown trees that act as a table of contents for a folder structure with Markdown notes

10 lines (6 loc) 188 B
"use strict"; const path = require("path"); module.exports = { getAbsolutePath }; function getAbsolutePath(relativePath) { return path.join(process.cwd(), relativePath); }