-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Style Guide
Snuffleupagus edited this page Jan 9, 2013
·
32 revisions
- Indentation - 2 spaces
- Line Length - 80 characters
- Required License in File Header
- variables and functions - lowerCamelCase
- constructor like functions - UpperCamelCase
- constants - ALL_UPPER_CASE_WITH_UNDERSCORES
- Always use braces and put them on same line even for single line control statements
if (someVar) {
return true;
} else {
return null;
}
Note: This wasn't always followed, but any new code should do this.
- Space after control statements (if, else, while, for, ...)
if (someVar) {
- Use only strict equalities (and inequalities) in control statements, e.g.
if (someVar === conditionA) {
return true;
} else if (someVar !== conditionB) {
return false;
}
Note: This wasn't always followed, but any new code should do this.
The standard way of creating classes in pdf.js is the following. Please note that by class we mean an object that is class-like. Also, note the naming of all anonymous functions.
var ClassName = (function ClassNameClosure() {
function ClassName(...) {
...
}
ClassName.prototype = {
functionName: function ClassName_functionName(...) {
...
}
};
return ClassName;
})();