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.
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.
var Name = (function NameClosure() { function Name(name) { this.name = name; } Name.prototype = { }; ... return Name; })();