verb
Version:
A project without documentation is like a project that doesn't exist. Verb solves this by making it dead simple to generate docs, using simple markdown templates, with zero configuration required.
28 lines (24 loc) • 670 B
JavaScript
/**
* Verb <https://github.com/assemble/verb>
* Generate markdown documentation for GitHub projects.
*
* Copyright (c) 2014 Jon Schlinkert, Brian Woodward, contributors.
* Licensed under the MIT license.
*/
const path = require('path');
const cwd = require('cwd');
const file = require('fs-utils');
const relative = require('relative');
/**
* Get the relative path from process.cwd() to
* the specifiied paths, from any other directory
* in the project.
*
* @return {String}
* @api public
*/
module.exports = function() {
var filepath = path.join.apply(path, arguments);
filepath = relative(cwd, filepath);
return file.normalizeSlash(filepath);
};