UNPKG

@antv/util

Version:

<h1 align="center">@antv/util</h1>

6 lines (5 loc) 163 B
/** * 判断值是否为 null 或 undefined * @return 是否为 null 或 undefined */ export default function isNil(value: unknown): value is null | undefined;