UNPKG

react-native-advanced-input-mask

Version:

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

17 lines (16 loc) 400 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; class State { child = null; constructor(child) { this.child = child; } nextState = () => this.child; autocomplete = () => null; toString = () => `BASE -> ${this.child ? this.child.toString() : "null"}`; } var _default = exports.default = State; //# sourceMappingURL=State.js.map