UNPKG
@zhouchangju/standard-chart
Version:
latest (1.10.2-alpha-20250806)
1.10.2-alpha-20250806
标准范式组件
@zhouchangju/standard-chart
/
types
/
extension
/
component
/
dataZoom
/
util.d.ts
11 lines
(10 loc)
•
391 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * *
@param
val 待判断是否为有效数字的任意变量 *
@returns
是否为有效值 *
@description
有效值的定义: * - 对于普通类型:类型为‘number’ 且 非NaN 且 不为+/-Infinity * - 对于数组: 检查每一个元素是否符合普通类型 *
@caution
空数组不为有效值 */
export
declare
function
isValidNumericValue
(
val
:
unknown
):
boolean
;