export const isIterable = (content: Content): content is Iterable<Bytes> =>
  content && typeof content === "object" && Symbol.iterator in content;