standaardisation updates

This commit is contained in:
znetsixe
2025-06-25 10:55:50 +02:00
parent dbc36c2f57
commit 3198690a81
126 changed files with 5028 additions and 608 deletions

3
convert/percentError.js Normal file
View File

@@ -0,0 +1,3 @@
module.exports = function (expected, actual) {
return Math.abs((expected - actual) / actual);
}