blob: d89dd8b47da06b5db360bd0c7af80b1a7bf168c4 (
plain)
1
2
3
4
5
|
/* eslint-env mozilla/chrome-script */
addMessageListener("ImportTesting:IsModuleLoaded", function (msg) {
sendAsyncMessage("ImportTesting:IsModuleLoadedReply", Cu.isModuleLoaded(msg));
});
|