mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-11 10:58:34 +00:00
7 lines
226 B
JavaScript
7 lines
226 B
JavaScript
function run_test() {
|
|
var cmdLine=Components.classes["@mozilla.org/toolkit/command-line;1"].createInstance(Components.interfaces.nsICommandLine);
|
|
try {
|
|
cmdLine.getArgument(cmdLine.length);
|
|
} catch (e) {}
|
|
}
|