mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
17 lines
197 B
JavaScript
17 lines
197 B
JavaScript
|
|
var util = {
|
|
/** @constructor util */
|
|
init: function() {
|
|
|
|
},
|
|
|
|
/** Remove whitespace padding.
|
|
@instance
|
|
@param {string} str
|
|
*/
|
|
trim: function (str) {
|
|
|
|
}
|
|
};
|
|
|
|
makeClass( 'util', util ); |