jsdoc 0.19.0

JsDoc parser writen in rust
Documentation
1
2
3
4
5
6
7
8
9
/** @module color/mixer */

module.exports = {
    /** Blend two colors together. */
    blend: function(color1, color2) { }
}

/** Darken a color by the given shade. */
exports.darken = function(color, shade) { }