astro-ghostcms/.pnpm-store/v3/files/65/e7d2e59ea9c94ab52e4510f4099...

5 lines
146 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import is from '@sindresorhus/is';
export default function isFormData(body) {
return is.nodeStream(body) && is.function_(body.getBoundary);
}