mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 19:01:06 +00:00
Am an idiot
This commit is contained in:
parent
b9192592a9
commit
ee1e3abd45
@ -695,7 +695,7 @@ impl<'a> Context<'a> {
|
|||||||
self.globals.push_str(&format!("
|
self.globals.push_str(&format!("
|
||||||
const TextEncoder = require('util').TextEncoder;
|
const TextEncoder = require('util').TextEncoder;
|
||||||
"));
|
"));
|
||||||
} else if !(self.config.browser && self.config.amd) {
|
} else if !(self.config.browser || self.config.amd) {
|
||||||
self.globals.push_str(&format!("
|
self.globals.push_str(&format!("
|
||||||
const TextEncoder = typeof window === 'object' && window.TextEncoder
|
const TextEncoder = typeof window === 'object' && window.TextEncoder
|
||||||
? window.TextEncoder
|
? window.TextEncoder
|
||||||
@ -715,7 +715,7 @@ impl<'a> Context<'a> {
|
|||||||
self.globals.push_str(&format!("
|
self.globals.push_str(&format!("
|
||||||
const TextDecoder = require('util').TextDecoder;
|
const TextDecoder = require('util').TextDecoder;
|
||||||
"));
|
"));
|
||||||
} else if !(self.config.browser && self.config.amd) {
|
} else if !(self.config.browser || self.config.amd) {
|
||||||
self.globals.push_str(&format!("
|
self.globals.push_str(&format!("
|
||||||
const TextDecoder = typeof window === 'object' && window.TextDecoder
|
const TextDecoder = typeof window === 'object' && window.TextDecoder
|
||||||
? window.TextDecoder
|
? window.TextDecoder
|
||||||
|
Loading…
x
Reference in New Issue
Block a user