mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-27 03:53:55 +03:00
9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
export default function isIterable(obj) {
|
|
return (
|
|
obj !== null &&
|
|
typeof obj === 'object' &&
|
|
!Array.isArray(obj) &&
|
|
typeof obj[window.Symbol.iterator] === 'function'
|
|
);
|
|
}
|