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 • 329 B
JavaScript
class AutocompletionStack extends Array {
push(item) {
if (item === null) {
this.length = 0;
return 0;
}
return super.push(item);
}
pop() {
return super.pop();
}
empty() {
return this.length === 0;
}
}
export default AutocompletionStack;
//# sourceMappingURL=AutocompletionStack.js.map