mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-26 23:20:58 +00:00
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");
|
|
}
|