react-native-advanced-input-mask
Version:
Text input mask for React Native on iOS, Android and web. Synchronous and easy formatting without hustle
14 lines (13 loc) • 364 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getCharacterTypeString = void 0;
const getCharacterTypeString = state => {
if (!state) {
return "[?]";
}
return "name" in state ? state.typeString : `[${state.character}]`;
};
exports.getCharacterTypeString = getCharacterTypeString;
//# sourceMappingURL=utils.js.map