Home > @easyops-cn/brick-next-pipes > unitFormat
unitFormat() function
将一个数值转换为带单位的数据。
Others
Signature:
export declare function unitFormat(value: number, unit: string, precision?: number, targetUnit?: string): [string, string];
Parameters
Parameter | Type | Description |
---|---|---|
value | number | 数值。 |
unit | string | 当前单位。 |
precision | number | 精度(默认为 2 )。 |
targetUnit | string | 目标单位,若不填则会自动计算。 |
Returns:
[string, string]
由转换后的数值和单位组成的数组。
Example
unitFormat(1024, "KBps")
// Returns `["1.00", "MBps"]`