Skip to content

Commit

Permalink
Fix native Object.is() detection, fixes #54.
Browse files Browse the repository at this point in the history
  • Loading branch information
asudoh committed Aug 12, 2015
1 parent 79048b5 commit 92b8128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ define(["requirejs-dplugins/has"], function (has) {
has.add("console-api", typeof console !== "undefined");
has.add("host-browser", typeof window !== "undefined");
has.add("object-observe-api", typeof Object.observe === "function" && typeof Array.observe === "function");
has.add("object-is-api", Object.is);
has.add("object-is-api", !!Object.is);
has.add("setimmediate-api", typeof setImmediate === "function");
has.add("mutation-observer-api",
typeof MutationObserver !== "undefined"
Expand Down

0 comments on commit 92b8128

Please sign in to comment.