Merge branch 'development' into fix/transfer-to-laying

This commit is contained in:
ValdiANS
2026-01-23 23:07:51 +07:00
17 changed files with 401 additions and 153 deletions
+5
View File
@@ -32,6 +32,11 @@ export const formatNumber = (
}).format(value);
};
export const safeRound = (num: number, decimals: number) => {
const factor = 10 ** decimals;
return Math.round((num + Number.EPSILON) * factor) / factor;
};
export const formatTitleCase = (value: string) => {
return value
.toLowerCase()