1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-17 05:15:20 +03:00

Convert to CommonJS Modules

This commit is contained in:
Andi Kanzler 2024-02-26 11:58:56 -03:00
parent 7df8253099
commit 91f1699659
100 changed files with 9685 additions and 3735 deletions

View file

@ -1,7 +1,7 @@
/*global ServoMixRule*/
'use strict';
let ServoMixerRuleCollection = function () {
var ServoMixerRuleCollection = function () {
let self = {},
data = [],
@ -155,4 +155,6 @@ let ServoMixerRuleCollection = function () {
}
return self;
};
};
module.exports = ServoMixerRuleCollection;