RonaldJerez / vue-input-facade

A lightweight and dependency free input masking library created specific for Vue
https://ronaldjerez.github.io/vue-input-facade/latest/
182 stars 27 forks source link

feat: add support for repeating characters one or more #51

Closed dima-bzz closed 2 years ago

dima-bzz commented 2 years ago

Add support for repeating characters one or more

Example:

#+A+ -> 123AAAA

RonaldJerez commented 2 years ago

I contemplated if this was needed when I implemented the * option. I think we can do without it because you can already accomplish the same by doing the following ##* = #+ and keeps the code simpler to maintain.

dima-bzz commented 2 years ago

I thought about that too, so the decision is up to you.

RonaldJerez commented 2 years ago

Let's keep it as is for now, thanks though.