Code coverage report for master/lib/jsdoc/app.js

Statements: 100% (1 / 1)      Branches: 100% (0 / 0)      Functions: 100% (0 / 0)      Lines: 100% (1 / 1)      Ignored: none     

All files » master/lib/jsdoc/ » app.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20            1                          
/**
 * Objects that are shared across the entire application.
 *
 * @deprecated As of JSDoc 3.4.0. Do not use this module. It will be removed in a future release.
 * @module jsdoc/app
 */
module.exports = {
    /**
     * Namespace for shared objects.
     *
     * @namespace
     * @type {Object}
     */
    jsdoc: {
        name: require('jsdoc/name'),
        parser: null,
        scanner: new (require('jsdoc/src/scanner').Scanner)()
    }
};