You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
asap does not use makeRequestCallFromMutationObserver because if (typeof BrowserMutationObserver === "function") fails: typeof MutationObserver returns "object" in Safari (observed in versions 7-9).
Knowing that host/native constructors have sometimes typeof equal to "object", in P the check of existence of a constructor consists in typeof x === "function || typeof y === "object".
I suggest to do similarly here.
asap does not use
makeRequestCallFromMutationObserver
becauseif (typeof BrowserMutationObserver === "function")
fails:typeof MutationObserver
returns "object" in Safari (observed in versions 7-9).Object.prototype.toString.call(MutationObserver)
returns "[object MutationObserverConstructor]".The text was updated successfully, but these errors were encountered: