transit from nadrez, added panel

This commit is contained in:
2022-11-18 09:27:17 +10:00
parent 5e3e42ebe7
commit d8c41863a8
15 changed files with 11243 additions and 0 deletions

29
firefox/modules/module.js Normal file
View File

@@ -0,0 +1,29 @@
'use strict'
/**
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
*/
class module {
/**
* Префикс в журнале
*/
prefix = this.name;
/**
* Запись в журнал
*
* @param {string} text
*
* @return {bool} Статус записи в журнал
*/
log(text) {
if (typeof text === 'string') {
// Передана строка
// Запись в журнал
return log.write(this.prefix, text);
}
return false;
}
}