Repository URL to install this package:
|
Version:
4.0.29 ▾
|
import { hasOwnProp } from 'exotic'
import { TextBoxProps, TextBoxState, TextBoxComponent } from '../typings'
export function createGetFromPropsOrState(instance: TextBoxComponent) {
return function getFromPropsOrState(key: string): any {
return hasOwnProp(instance.props, key) ? instance.props[key] : instance.state[key]
}
}