UNPKG

react-native-advanced-input-mask

Version:

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

11 lines 276 B
class State { child = null; constructor(child) { this.child = child; } nextState = () => this.child; autocomplete = () => null; toString = () => `BASE -> ${this.child ? this.child.toString() : "null"}`; } export default State; //# sourceMappingURL=State.js.map