Releases: TooTallNate/proxy-agents
Releases · TooTallNate/proxy-agents
[email protected]
Patch Changes
- c3c405e: Add missing
URL
type import
[email protected]
Patch Changes
- c3c405e: Add missing
URL
type import
[email protected]
[email protected]
Patch Changes
- c881a18: Use native Buffer decoding in Node.js
[email protected]
Patch Changes
- Updated dependencies [52b458f]
[email protected]
Patch Changes
- 1d146e8: Ensure
<reference types="node" />
is not present in generated types
[email protected]
Major Changes
-
52b458f: Refactor to return an
ArrayBuffer
instead of a Node.jsBuffer
.This change is being made to make the package platform-agnostic, and work in web browsers or other non-Node.js environments without polyfills.
For Node.js users of this package, you can get a Node.js
Buffer
instance from anArrayBuffer
like so:const uri = 'data:,Hello%2C%20World!'; const parsed = dataUriToBuffer(uri); const buffer = Buffer.from(parsed.buffer); // `buffer` is a Node.js Buffer
[email protected]
Patch Changes
- 1d39f6c: Fix Electron support by using Node.js native URL object