mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 06:25:51 +03:00
469aaa398c
resolves #1920 - updates all files to conform to style settings.
15 lines
219 B
JavaScript
15 lines
219 B
JavaScript
var lib = require('../example');
|
|
|
|
function BadApp(app) {
|
|
this.app = app;
|
|
}
|
|
|
|
BadApp.prototype.install = function () {
|
|
return lib.answer;
|
|
};
|
|
|
|
BadApp.prototype.activate = function () {
|
|
};
|
|
|
|
module.exports = BadApp;
|