From 5ae8e5d773c6b57fe166681ffa9cdc153f69427b Mon Sep 17 00:00:00 2001 From: dave caruso Date: Sat, 24 Jun 2023 02:23:39 -0400 Subject: Make node-fallbacks build as esm not cjs / Fix `node-fetch` (#3377) * Make node-fallbacks build as esm not cjs. * fix stuff --- src/node-fallbacks/util.js | 1 + 1 file changed, 1 insertion(+) (limited to 'src/node-fallbacks/util.js') diff --git a/src/node-fallbacks/util.js b/src/node-fallbacks/util.js index 3bd55da0a..1ad352a2a 100644 --- a/src/node-fallbacks/util.js +++ b/src/node-fallbacks/util.js @@ -4,3 +4,4 @@ const TextEncoder = globalThis.TextEncoder; const TextDecoder = globalThis.TextDecoder; export { TextEncoder, TextDecoder }; +export default { TextEncoder, TextDecoder }; -- cgit v1.2.3