UNPKG

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