mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
xo --fix
This commit is contained in:
@ -1,12 +1,12 @@
|
||||
/*
|
||||
this is used to determine if plugin is actually active
|
||||
This is used to determine if plugin is actually active
|
||||
(not if its only enabled in options)
|
||||
*/
|
||||
let enabled = false;
|
||||
module.exports = (win,options) => {
|
||||
enabled = true;
|
||||
module.exports = () => {
|
||||
enabled = true;
|
||||
};
|
||||
|
||||
module.exports.enabled = () => {
|
||||
return enabled;
|
||||
};
|
||||
return enabled;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user