Move number.ts to utils in shared components (#30498)

* refactor: move `number.ts` in shared components

* chore: include ts test file in sonar config
This commit is contained in:
Florian Duros
2025-08-05 17:04:45 +00:00
committed by GitHub
parent 9be2b973d0
commit 24f923feac
12 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Com
Please see LICENSE files in the repository root for full details.
*/
import { percentageOf, percentageWithin } from "./numbers";
import { percentageOf, percentageWithin } from "../shared-components/utils/numbers";
/**
* Quickly resample an array to have less/more data points. If an input which is larger
-35
View File
@@ -1,35 +0,0 @@
/*
Copyright 2024 New Vector Ltd.
Copyright 2021 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
*/
/**
* Returns the default number if the given value, i, is not a number. Otherwise
* returns the given value.
* @param {*} i The value to check.
* @param {number} def The default value.
* @returns {number} Either the value or the default value, whichever is a number.
*/
export function defaultNumber(i: unknown, def: number): number {
return Number.isFinite(i) ? Number(i) : def;
}
export function clamp(i: number, min: number, max: number): number {
return Math.min(Math.max(i, min), max);
}
export function sum(...i: number[]): number {
return [...i].reduce((p, c) => c + p, 0);
}
export function percentageWithin(pct: number, min: number, max: number): number {
return pct * (max - min) + min;
}
export function percentageOf(val: number, min: number, max: number): number {
const percentage = (val - min) / (max - min);
return Number.isNaN(percentage) ? 0 : percentage;
}