UNPKG

155 BJavaScriptView Raw
1const isNotStringAndIterable = (x) => x != null && typeof x !== "string" && typeof x[Symbol.iterator] === "function";
2export {
3 isNotStringAndIterable
4};