Repository URL to install this package:
Version:
0.9.5 ▾
|
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]
}
}