Update boot.js

master
RKBoss6 2025-06-24 15:54:26 -04:00 committed by GitHub
parent 08078f3cd0
commit 149975e2c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* no-unused-vars */
(function() { (function() {
var settings = Object.assign( var settings = Object.assign(
require('Storage').readJSON("powermanager.default.json", true) || {}, require('Storage').readJSON("powermanager.default.json", true) || {},
@ -76,7 +76,7 @@
})(Bangle[functionName]); })(Bangle[functionName]);
} }
/* exported functions */ /* exported functions */
let functions = {}; var functions = {};
let wrapDeferred = ((o,t) => (a) => { let wrapDeferred = ((o,t) => (a) => {
if (a == eval || typeof a == "string") { if (a == eval || typeof a == "string") {
return o.apply(this, arguments); return o.apply(this, arguments);
@ -164,4 +164,4 @@
}); });
} }
})(); })();
/* no-unused-vars */