missing semicolon

This commit is contained in:
Miodec 2021-07-07 14:03:46 +01:00
parent c2c16c3111
commit 24e7c35a6f

View file

@ -8,5 +8,5 @@ module.exports = {
return Math.sqrt(
array.map((x) => Math.pow(x - mean, 2)).reduce((a, b) => a + b) / n
);
}
}
},
};