arch-wiki-man/lib/util.js

11 lines
273 B
JavaScript
Raw Normal View History

2016-01-30 15:11:55 +00:00
'use strict';
var path = require('path');
exports.getArticlePath = getArticlePath;
function getArticlePath(relativeArticlePath) {
var absoluteArticlePath = path.resolve('node_modules', 'arch-wiki-md-repo', 'wiki', relativeArticlePath);
return absoluteArticlePath;
}