functions of mutator script #665
Answered
by
RohitKushvaha01
vervethe-yeah
asked this question in
Q&A
-
|
please show all functions of mutator script |
Beta Was this translation helpful? Give feedback.
Answered by
RohitKushvaha01
Jul 31, 2025
Replies: 1 comment 3 replies
-
Mutators use QuickJs to run JavaScript in Xed-Editor, so you can access all the features of ES2023. Additionally, Xed provides some simple APIs: let text = getEditorText();
showToast(text);
let response = http(url, jsonString);
showDialog(title, msg);
showInput(title, hint, prefill);
setEditorText('This text will be written in the editor'); |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
RohitKushvaha01
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Mutators use QuickJs to run JavaScript in Xed-Editor, so you can access all the features of ES2023. Additionally, Xed provides some simple APIs: