mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-21 07:38:07 +02:00
Fix errors reported by the space-infix-ops
ESLint rule
http://eslint.org/docs/rules/space-infix-ops
This commit is contained in:
parent
68bf47d55d
commit
28e50cfa21
6 changed files with 8 additions and 8 deletions
|
@ -159,7 +159,7 @@ function stat(baseline, current) {
|
|||
}
|
||||
|
||||
// add horizontal line
|
||||
var hline = width.map(function(w) { return new Array(w+1).join('-'); });
|
||||
var hline = width.map(function(w) { return new Array(w + 1).join('-'); });
|
||||
rows.splice(1, 0, hline);
|
||||
|
||||
// print output
|
||||
|
|
|
@ -70,7 +70,7 @@ describe('Type1Parser', function() {
|
|||
var stream = new StringStream(
|
||||
'/ExpansionFactor 99\n' +
|
||||
'/Subrs 1 array\n' +
|
||||
'dup 0 1 RD x noaccess put\n'+
|
||||
'dup 0 1 RD x noaccess put\n' +
|
||||
'end\n' +
|
||||
'/CharStrings 46 dict dup begin\n' +
|
||||
'/.notdef 1 RD x ND\n' +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue