Pepinelli

Results 2 comments of Pepinelli

Not with this library, not yet. But I found an alternative with typescript, regex and antd input component. ```javascript export const currencyMask = (value: string) => { let valueFormatted =...

Hi @renerlemes If you add a "padStart" to the function you will have the behavior that you want. ```javascript export const currencyMask = (value: string) => { let valueFormatted =...