mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-02 18:31:05 +00:00
Fix a typo in passStringToWasm
This commit is contained in:
parent
d768b42a64
commit
ac1acf55ac
@ -218,7 +218,7 @@ impl Js {
|
|||||||
if self.nodejs {
|
if self.nodejs {
|
||||||
globals.push_str("
|
globals.push_str("
|
||||||
function passStringToWasm(arg) {
|
function passStringToWasm(arg) {
|
||||||
if (typeof(n) !== 'string')
|
if (typeof(arg) !== 'string')
|
||||||
throw new Error('expected a string argument');
|
throw new Error('expected a string argument');
|
||||||
const buf = Buffer.from(arg);
|
const buf = Buffer.from(arg);
|
||||||
const len = buf.length;
|
const len = buf.length;
|
||||||
@ -231,7 +231,7 @@ impl Js {
|
|||||||
} else {
|
} else {
|
||||||
globals.push_str("
|
globals.push_str("
|
||||||
function passStringToWasm(arg) {
|
function passStringToWasm(arg) {
|
||||||
if (typeof(n) !== 'string')
|
if (typeof(arg) !== 'string')
|
||||||
throw new Error('expected a string argument');
|
throw new Error('expected a string argument');
|
||||||
const buf = new TextEncoder('utf-8').encode(arg);
|
const buf = new TextEncoder('utf-8').encode(arg);
|
||||||
const len = buf.length;
|
const len = buf.length;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user