(thing)
| 949 | * @returns {boolean} True if value has a non-polluted iterator |
| 950 | */ |
| 951 | const isSafeIterable = (thing) => |
| 952 | thing != null && hasOwnInPrototypeChain(thing, iterator) && isIterable(thing); |
| 953 | |
| 954 | export default { |
| 955 | isArray, |
nothing calls this directly
no test coverage detected