mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-13 11:29:53 +03:00
Convert to CommonJS Modules
This commit is contained in:
parent
7df8253099
commit
91f1699659
100 changed files with 9685 additions and 3735 deletions
|
@ -1,8 +1,6 @@
|
|||
/*global mspHelper,FEATURES,bit_clear,bit_set*/
|
||||
'use strict';
|
||||
|
||||
var helper = helper || {};
|
||||
|
||||
/*
|
||||
Helper to work with FEATURES via MSP
|
||||
|
||||
|
@ -23,7 +21,7 @@ helper.features.execute(function () {
|
|||
});
|
||||
|
||||
*/
|
||||
helper.features = (function() {
|
||||
var features = (function() {
|
||||
|
||||
let publicScope = {},
|
||||
privateScope = {};
|
||||
|
@ -84,4 +82,6 @@ helper.features = (function() {
|
|||
}
|
||||
|
||||
return publicScope;
|
||||
})();
|
||||
})();
|
||||
|
||||
module.exports = features;
|
Loading…
Add table
Add a link
Reference in a new issue