Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: intl/uconv/tests/unit/xpcshell.toml
// Tests conversion of a single byte from UTF-16 to Unicode
const inString = "A";
const expectedString = "";
const charset = "UTF-16BE";
function run_test() {
checkDecode(CreateScriptableConverter(), charset, inString, expectedString);
}