Update src/fonts.js

One simple thing that came up while looking at the new Octane benchmark.
This commit is contained in:
Tom Schuster 2012-08-21 23:14:07 +03:00 committed by Yury Delendik
parent da861bef30
commit fad38f8286

View File

@ -4100,7 +4100,7 @@ Type1Font.prototype = {
// charstring changes size - can't cache .length in loop
for (var i = 0; i < charstring.length; i++) {
var command = charstring[i];
if (command.charAt) {
if (typeof command === 'string') {
var cmd = map[command];
assert(cmd, 'Unknow command: ' + command);