UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

7 lines (6 loc) 227 B
import isNull from 'lodash/isNull'; import isUndefined from 'lodash/isUndefined'; export default function isNullOrUndefined(value) { return isNull(value) || isUndefined(value); } //# sourceMappingURL=isNullOrUndefined.js.map