UNPKG

rsuite-table

Version:
7 lines (5 loc) 191 B
import isNull from 'lodash/isNull'; import isUndefined from 'lodash/isUndefined'; export default function isNullOrUndefined(value): boolean { return isNull(value) || isUndefined(value); }