[Pkg-javascript-commits] [pdf.js] 88/246: Add strict equalities in src/core/obj.js
David Prévot
taffit at moszumanska.debian.org
Sun Sep 7 15:36:28 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository pdf.js.
commit ee0c0dd8a9848cb41d4a8a850af62790b1620fc3
Author: Jonas Jenwald <jonas.jenwald at gmail.com>
Date: Fri Aug 1 21:45:39 2014 +0200
Add strict equalities in src/core/obj.js
---
src/core/obj.js | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/core/obj.js b/src/core/obj.js
index 98e7a17..fcaee03 100644
--- a/src/core/obj.js
+++ b/src/core/obj.js
@@ -98,12 +98,12 @@ var Dict = (function DictClosure() {
get: function Dict_get(key1, key2, key3) {
var value;
var xref = this.xref;
- if (typeof (value = this.map[key1]) != 'undefined' || key1 in this.map ||
- typeof key2 == 'undefined') {
+ if (typeof (value = this.map[key1]) !== 'undefined' || key1 in this.map ||
+ typeof key2 === 'undefined') {
return xref ? xref.fetchIfRef(value) : value;
}
- if (typeof (value = this.map[key2]) != 'undefined' || key2 in this.map ||
- typeof key3 == 'undefined') {
+ if (typeof (value = this.map[key2]) !== 'undefined' || key2 in this.map ||
+ typeof key3 === 'undefined') {
return xref ? xref.fetchIfRef(value) : value;
}
value = this.map[key3] || null;
@@ -652,7 +652,7 @@ var Catalog = (function CatalogClosure() {
for (var i = 0; i < kids.length; i++) {
var kid = kids[i];
assert(isRef(kid), 'kids must be a ref');
- if (kid.num == kidRef.num) {
+ if (kid.num === kidRef.num) {
found = true;
break;
}
@@ -976,7 +976,7 @@ var XRef = (function XRefClosure() {
// finding byte sequence
while (offset < dataLength) {
var i = 0;
- while (i < length && data[offset + i] == what[i]) {
+ while (i < length && data[offset + i] === what[i]) {
++i;
}
if (i >= length) {
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/pdf.js.git
More information about the Pkg-javascript-commits
mailing list