jsdoc/test/cases/moduletag2.js

9 lines
213 B
JavaScript

/** @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) { }