formdata-node
Advanced tools
Comparing version 4.2.0 to 4.2.1
@@ -1,2 +0,1 @@ | ||
import type { ReadableStream } from "web-streams-polyfill"; | ||
import { Blob, BlobPropertyBag } from "./Blob"; | ||
@@ -21,5 +20,6 @@ export interface FileLike { | ||
[Symbol.toStringTag]: string; | ||
stream(): ReadableStream | { | ||
[Symbol.asyncIterator](): AsyncIterableIterator<Uint8Array>; | ||
}; | ||
/** | ||
* Returns a [`ReadableStream`](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream) which upon reading returns the data contained within the [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File). | ||
*/ | ||
stream(): AsyncIterable<Uint8Array>; | ||
} | ||
@@ -26,0 +26,0 @@ export interface FileOptions extends BlobPropertyBag { |
{ | ||
"name": "formdata-node", | ||
"version": "4.2.0", | ||
"version": "4.2.1", | ||
"description": "Spec-compliant FormData implementation for Node.js", | ||
@@ -5,0 +5,0 @@ "repository": "octet-stream/form-data", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77876