documentation/test/fixture/this-class.input.js
Tom MacWright 25152edeb9 style(prettier): Use prettier for code formatting (#710)
* style(prettier): Use prettier for code formatting

This saves us style issues. Also adds husky and lint-staged for pre-commit testing

Refs https://github.com/documentationjs/documentation/issues/709
2017-04-10 14:25:45 -04:00

14 lines
238 B
JavaScript

/** @module bookshelf */
/** @class */
var Book = function(title) {
/** The title of the book. */
this.title = title;
};
/** @class */
this.BookShelf = function(title) {
/** The title of the bookshelf. */
this.title = title;
};