Skip to content

Commit 92b8128

Browse files
committed
Fix native Object.is() detection, fixes #54.
1 parent 79048b5 commit 92b8128

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ define(["requirejs-dplugins/has"], function (has) {
33
has.add("console-api", typeof console !== "undefined");
44
has.add("host-browser", typeof window !== "undefined");
55
has.add("object-observe-api", typeof Object.observe === "function" && typeof Array.observe === "function");
6-
has.add("object-is-api", Object.is);
6+
has.add("object-is-api", !!Object.is);
77
has.add("setimmediate-api", typeof setImmediate === "function");
88
has.add("mutation-observer-api",
99
typeof MutationObserver !== "undefined"

0 commit comments

Comments
 (0)