mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
Fix lint errors
Single quotes instead of double quotes
This commit is contained in:
parent
8a6cf185fd
commit
56789aea47
1 changed files with 2 additions and 2 deletions
|
@ -19,12 +19,12 @@ function backtrace() {
|
|||
try {
|
||||
throw new Error();
|
||||
} catch (e) {
|
||||
return e.stack ? e.stack.split('\n').slice(2).join('\n') : "";
|
||||
return e.stack ? e.stack.split('\n').slice(2).join('\n') : '';
|
||||
}
|
||||
}
|
||||
|
||||
function error(msg) {
|
||||
log("Error: " + msg);
|
||||
log('Error: ' + msg);
|
||||
log(backtrace());
|
||||
throw new Error(msg);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue