export const isIterable = <T>(object): object is Iterable<T> =>
  typeof object[Symbol.iterator] === "function";