mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
45adfbf2c8
--HG-- extra : rebase_source : 98337b6a8c07d05e8c961a452dd05a7d75c3c60b
7 lines
250 B
JavaScript
7 lines
250 B
JavaScript
this.EXPORTED_SYMBOLS = ['checkFromJSM'];
|
|
|
|
this.checkFromJSM = function checkFromJSM(is_op) {
|
|
is_op(new TextDecoder().encoding, "utf-8", "JSM should have TextDecoder");
|
|
is_op(new TextEncoder().encoding, "utf-8", "JSM should have TextEncoder");
|
|
}
|