react-native-mask-text
Version:
A React Native and Expo library to mask text
20 lines (18 loc) • 536 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SECONDS = exports.MINUTES = exports.HOURS = exports.DIGIT = exports.ALPHANUM = exports.ALPHA = void 0;
const DIGIT = '9';
exports.DIGIT = DIGIT;
const ALPHA = 'A';
exports.ALPHA = ALPHA;
const ALPHANUM = 'S';
exports.ALPHANUM = ALPHANUM;
const HOURS = 'H'; // export const HOURS_AM_PM = 'h'
exports.HOURS = HOURS;
const MINUTES = 'm';
exports.MINUTES = MINUTES;
const SECONDS = 's';
exports.SECONDS = SECONDS;
//# sourceMappingURL=constants.js.map