Repository URL to install this package:
|
Version:
2.1.2-perf.5 ▾
|
import { hasOwnProp } from 'exotic';
export function createGetFromPropsOrState(instance) {
return function getFromPropsOrState(key) {
return hasOwnProp(instance.props, key) ? instance.props[key] : instance.state[key];
};
} //# sourceMappingURL=createGetFromPropsOrState.js.map