errormetrics fix

This commit is contained in:
znetsixe
2025-09-16 12:10:41 +02:00
parent a30f2c90f4
commit 241ed1d3cb
5 changed files with 10 additions and 10 deletions

View File

@@ -1,10 +1,10 @@
/**
* generalFunctions/index.js
* generalfunctions/index.js
* -----------------------------------------------------------
* Central barrel file for re-exporting helpers and configurations.
* Provides both namespace exports and dynamic loading capabilities.
* now we can load modules like this:
* const { menuUtils, outputUtils } = require('generalFunctions');
* const { menuUtils, outputUtils } = require('generalfunctions');
*/
// Core helper modules
@@ -16,7 +16,7 @@ const configUtils = require('./src/helper/configUtils.js');
// Domain-specific modules
const { MeasurementContainer } = require('./src/measurements/index.js');
const configManager = require('./src/configs/index.js');
const nrmse = require('./src/nrmse/ErrorMetrics.js');
const nrmse = require('./src/nrmse/errorMetrics.js');
const state = require('./src/state/state.js');
const convert = require('./src/convert/index.js');
const MenuManager = require('./src/menu/index.js');