UNPKG

choerodon-ui

Version:

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

7 lines (6 loc) 241 B
import isEqual from 'lodash/isEqual'; import isEmpty from './isEmpty'; export default function isSame(newValue, oldValue) { return isEmpty(newValue) && isEmpty(oldValue) || isEqual(newValue, oldValue); } //# sourceMappingURL=isSame.js.map