Skip to content

Commit d159b6e

Browse files
committed
Fix dart.equals("10", 10) (issue #210)
See doc on == vs. === : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators Note that the `== null` tests in the same function are probably preferable to `=== null` if both undefined and null values can be encountered.
1 parent 321be0a commit d159b6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/dev_compiler/lib/runtime/dart_runtime.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ var dart, dartx;
423423
function equals(x, y) {
424424
if (x == null || y == null) return x == y;
425425
let eq = x['=='];
426-
return eq ? eq.call(x, y) : x == y;
426+
return eq ? eq.call(x, y) : x === y;
427427
}
428428
dart.equals = equals;
429429

0 commit comments

Comments
 (0)