Skip to content

Commit 20bd1cc

Browse files
committed
Use ===
1 parent 6f3d25b commit 20bd1cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/object.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -779,9 +779,9 @@
779779
fetch: function() {
780780
var options = null;
781781
var fetchOptions = {};
782-
if(arguments.length == 1) {
782+
if(arguments.length === 1) {
783783
options = arguments[0];
784-
} else if(arguments.length == 2) {
784+
} else if(arguments.length === 2) {
785785
fetchOptions = arguments[0];
786786
options = arguments[1];
787787
}

0 commit comments

Comments
 (0)