mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-29 21:11:33 +03: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…
Reference in New Issue
Block a user