UNPKG

rsuite-utils

Version:
8 lines (5 loc) 155 B
/* @flow */ import _ from 'lodash'; export default function isNullOrUndefined(value: any): boolean { return _.isNull(value) || _.isUndefined(value); }