Closed tejaede closed 4 years ago
@marchant The previous check ( if (Symbol.... ) fails on IE11 because Symbol is not defined. This PR changes the null check to use typeof instead.
if (Symbol....
typeof
LGTM!
@marchant The previous check (
if (Symbol....
) fails on IE11 because Symbol is not defined. This PR changes the null check to usetypeof
instead.