UNPKG

raptor

Version:

RaptorJS provides an AMD module loader that works in Node, Rhino and the web browser. It also includes various sub-modules to support building optimized web applications.

20 lines (16 loc) 241 B
/** * Simple class-level comment */ define.Class("Simple", function(require) { /** * Constructor comment * @returns */ var Simple = function() { }; Simple.prototype = { hello: function() { } }; return Simple; });