mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-16 02:00:51 +00:00
Fix imports of TextEncoder/TextDecoder
This commit is contained in:
parent
bfde5e236c
commit
76cc1ca295
@ -642,8 +642,9 @@ impl<'a> Context<'a> {
|
||||
"));
|
||||
} else if !self.config.browser {
|
||||
self.globals.push_str(&format!("
|
||||
if (typeof window === 'undefined')
|
||||
var TextEncoder = require('util').TextEncoder;
|
||||
const TextEncoder = typeof window === 'object' && window.TextEncoder
|
||||
? window.TextEncoder
|
||||
: require('util').TextEncoder;
|
||||
"));
|
||||
}
|
||||
self.globals.push_str(&format!("
|
||||
@ -667,8 +668,9 @@ impl<'a> Context<'a> {
|
||||
"));
|
||||
} else if !self.config.browser {
|
||||
self.globals.push_str(&format!("
|
||||
if (typeof window === 'undefined')
|
||||
var TextDecoder = require('util').TextDecoder;
|
||||
const TextDecoder = typeof window === 'object' && window.TextDecoder
|
||||
? window.TextDecoder
|
||||
: require('util').TextDecoder;
|
||||
"));
|
||||
}
|
||||
self.globals.push_str(&format!("
|
||||
|
Loading…
x
Reference in New Issue
Block a user