UNPKG

react-native-advanced-input-mask

Version:

Text input mask for React Native on iOS, Android and web. Synchronous and easy formatting without hustle

16 lines (12 loc) 277 B
import { TextInput } from "react-native"; export const AFFINITY_CALCULATION_STRATEGY = { WHOLE_STRING: 0, PREFIX: 1, CAPACITY: 2, EXTRACTED_VALUE_CAPACITY: 3, }; const mock = { MaskedTextInput: TextInput, AFFINITY_CALCULATION_STRATEGY, }; module.exports = mock;