forgeplus-react/node_modules/rsuite-table/es/utils/isNullOrUndefined.js

5 lines
180 B
JavaScript

import isNull from 'lodash/isNull';
import isUndefined from 'lodash/isUndefined';
export default function isNullOrUndefined(value) {
return isNull(value) || isUndefined(value);
}