We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This is an example JavaScript project demonstrating sphinx-js documentation with yardang.
import { Calculator, Operation, add, multiply } from 'calculator'; // Using standalone functions const sum = add(5, 3); // 8 const product = multiply(4, 5); // 20 // Using the Calculator class const calc = new Calculator(); calc.calculate(10, 5, Operation.ADD); // 15 calc.calculate(20, 4, Operation.DIVIDE); // 5 // View history console.log(calc.getHistory());
Documentation is generated using JSDoc and integrated into the main yardang documentation using sphinx-js.