mirror of
https://github.com/documentationjs/documentation.git
synced 2025-12-08 18:23:43 +00:00
BREAKING CHANGE: I'd like to still support C++ and other languages in the future! But I'm much happier doing so by separating the extraction & input phases to the degree that documentation.js can read the output of another module that extracts JSDoc comments from C++ code, rather than having CPP support in it. Fixes #850. Fixes #731. Fixes #702. Fixes #132.
13 lines
171 B
JavaScript
13 lines
171 B
JavaScript
require('external');
|
|
require('external2');
|
|
require('module-not-found');
|
|
|
|
/**
|
|
* I am in `external.input.js`.
|
|
*/
|
|
function foo() {
|
|
return 'bar';
|
|
}
|
|
|
|
module.exports = foo;
|