Jeff Williams 85cbed9c0c change loading process for plugins and Markdown highlighters; remove jsdoc/path
We now simply use `require()` to load plugins and Markdown highlighters.

Note that `@jsdoc/util.path.commonPrefix`, unlike `jsdoc/path.commonPrefix`, does not append `path.sep` to the return value.

Includes other minor cleanup.
2019-01-27 15:18:28 -08:00

14 lines
202 B
JavaScript

/**
* @module @jsdoc/util
*/
const cast = require('./lib/cast');
const fs = require('./lib/fs');
const path = require('./lib/path');
module.exports = {
cast: cast,
fs: fs,
path: path
};