jsdoc 0.15.0

JsDoc parser writen in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
define(
    ["my/buttons"],
    function () {
       /**
            A module representing a coat.
            @exports my/coat
            @requires my/buttons
            @version 1.0
         */
        var myModule = function(wool) {
            /** document me */
            this.wool = wool;
        }

        return myModule;

    }
);