Skip to content

Commit df956d1

Browse files
fix(http): use globalThis.TextEncoder when available (#6634)
Co-authored-by: Dmitriy Mozgovoy <[email protected]>
1 parent 7139ce9 commit df956d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/helpers/formDataToStream.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import {TextEncoder} from 'util';
1+
import util from 'util';
22
import {Readable} from 'stream';
33
import utils from "../utils.js";
44
import readBlob from "./readBlob.js";
55

66
const BOUNDARY_ALPHABET = utils.ALPHABET.ALPHA_DIGIT + '-_';
77

8-
const textEncoder = new TextEncoder();
8+
const textEncoder = typeof TextEncoder === 'function' ? new TextEncoder() : new util.TextEncoder();
99

1010
const CRLF = '\r\n';
1111
const CRLF_BYTES = textEncoder.encode(CRLF);

0 commit comments

Comments
 (0)