We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 (...) { ... }, ... };