1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-03 19:01:06 +00:00

23 lines
448 B
JavaScript
Raw Normal View History

2019-05-13 08:12:32 -07:00
export function test_string_roundtrip(f) {
const test = expected => {
const actual = f(expected);
if (actual === expected)
return;
throw new Error(`string roundtrip "${actual}" != "${expected}"`);
};
test('');
test('a');
test('💖');
test('a longer string');
test('a longer 💖 string');
// TODO re-enable this when Firefox 70 is released
//test('\uFEFFbar');
}
export function identity(s) {
return s;
2019-05-13 08:12:32 -07:00
}