mirror of
https://github.com/greg-js/arch-wiki-man
synced 2024-11-12 19:10:50 +00:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
|
'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;
|
||
|
}
|