(props)
| 23 | */ |
| 24 | class NumberInput extends PureComponent { |
| 25 | constructor(props) { |
| 26 | super(props); |
| 27 | |
| 28 | autoBindReact(this); |
| 29 | } |
| 30 | |
| 31 | onChangeText(text) { |
| 32 | const transformedText = text.replace(/[^0-9]/g, ''); |
nothing calls this directly
no outgoing calls
no test coverage detected