montagejs / collections

This package contains JavaScript implementations of common data structures with idiomatic interfaces.
http://www.collectionsjs.com
Other
2.09k stars 185 forks source link

Adjust Symbol null check in shim-array #238

Closed tejaede closed 4 years ago

tejaede commented 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.

Screen Shot 2020-04-15 at 1 18 57 PM

marchant commented 4 years ago

LGTM!