Index

joshstock.in / 8d865bc

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
7320 Jan 2020 21:499b4a3f1Begin gitpager rewriteJosh Stockin160N

Blob @ joshstock.in / gitpager / src / pathFix.js

application/javascript153 bytesdownload raw
1const path = require('path');
2const rootDir = path.resolve(__dirname, "..");
3
4module.exports = function(local) {
5 return path.resolve(rootDir, local);
6}
7