UNPKG

@antv/util

Version:

> AntV 底层依赖的工具库,不建议在自己业务中使用。

9 lines 219 B
import isNumber from './is-number'; /** * 判断值是否为负数 * @return 是否为负数 */ export default function isNegative(num) { return isNumber(num) && num < 0; } //# sourceMappingURL=is-negative.js.map