mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 02:31:45 +00:00
10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
/*
|
|
This is used to determine if plugin is actually active
|
|
(not if its only enabled in options)
|
|
*/
|
|
let enabled = false;
|
|
|
|
module.exports = () => enabled = true;
|
|
|
|
module.exports.enabled = () => enabled;
|