Add disclaimer to the longform page

This commit is contained in:
Jocelyn Badgley (Twipped)
2021-03-25 14:05:29 -07:00
parent b919a7cf11
commit d121de5309
3 changed files with 9 additions and 2 deletions

View File

@@ -140,6 +140,10 @@ exports.resolve = function resolve (...args) {
return path.resolve(ROOT, fpath, ...args);
};
exports.resolveDir = function resolveDir (...args) {
return path.dirname(exports.resolve(...args));
};
exports.relative = function relative (fpath) {
return path.relative(ROOT, fpath);
};