There was an error while loading. Please reload this page.
Unless otherwise specified, follow the Google JavaScript style guide.
With few exceptions, classes will be defined as follows:
module.exports = function ClassName(args) { if (!(this instanceof ClassName)) ClassName(args); ... }; ClassName.prototype = { methodName: function (...) { ... }, ... };