mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-29 15:47:57 +02:00
Use lowercase in function names.
This alleviates the confusion which functions can be instantiated with new.
This commit is contained in:
parent
cc5fbab7f9
commit
800fc131b8
4 changed files with 166 additions and 166 deletions
|
@ -258,7 +258,7 @@ var Type2Parser = function(aFilePath) {
|
|||
var count = decoded.length;
|
||||
for (var i = 0; i < count; i++) {
|
||||
var token = decoded[i];
|
||||
if (IsNum(token)) {
|
||||
if (isNum(token)) {
|
||||
stack.push(token);
|
||||
} else {
|
||||
switch (token.operand) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue