mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-20 05:20:50 +03:00
5 lines
174 B
JavaScript
5 lines
174 B
JavaScript
|
export default function isIterable(obj) {
|
||
|
return obj !== null && typeof obj === 'object' && !Array.isArray(obj) &&
|
||
|
typeof obj[window.Symbol.iterator] === 'function';
|
||
|
}
|