mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-19 19:16:29 +08:00
4c3c953a36
Closes: [BS-2625](https://linear.app/affine-design/issue/BS-2625/合并clamp函数)
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
export function almostEqual(a: number, b: number, epsilon = 0.0001) {
|
|
return Math.abs(a - b) < epsilon;
|
|
}
|
|
|
|
export function rangeWrap(n: number, min: number, max: number) {
|
|
max = max - min;
|
|
n = (n - min + max) % max;
|
|
return min + (Number.isNaN(n) ? 0 : n);
|
|
}
|
|
|
|
/**
|
|
* Format bytes as human-readable text.
|
|
*
|
|
* @param bytes Number of bytes.
|
|
* @param si True to use metric (SI) units, aka powers of 1000. False to use
|
|
* binary (IEC), aka powers of 1024.
|
|
* @param dp Number of decimal places to display.
|
|
*
|
|
* @return Formatted string.
|
|
*
|
|
* Credit: https://stackoverflow.com/questions/10420352/converting-file-size-in-bytes-to-human-readable-string
|
|
*/
|
|
export function humanFileSize(bytes: number, si = true, dp = 1) {
|
|
const thresh = si ? 1000 : 1024;
|
|
|
|
if (Math.abs(bytes) < thresh) {
|
|
return bytes + ' bytes';
|
|
}
|
|
|
|
const units = si
|
|
? ['kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']
|
|
: ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'];
|
|
let u = -1;
|
|
const r = 10 ** dp;
|
|
|
|
do {
|
|
bytes /= thresh;
|
|
++u;
|
|
} while (
|
|
Math.round(Math.abs(bytes) * r) / r >= thresh &&
|
|
u < units.length - 1
|
|
);
|
|
|
|
return bytes.toFixed(dp) + ' ' + units[u];
|
|
}
|