1
0
Fork 0
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:
Kalervo Kujala 2011-09-28 22:00:12 +03:00
parent cc5fbab7f9
commit 800fc131b8
4 changed files with 166 additions and 166 deletions

View file

@ -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) {