Does the library support accesing unmasked value from event target? I have put onChange event on form tag to get any form change and event.target.value shows value with mask applied. My workaround to that is the code below but maybe library already allows that without accesing inputmask.
if (target.inputmask) {
value = target.inputmask.unmaskedvalue()
}
Does the library support accesing unmasked value from event target? I have put
onChange
event onform
tag to get any form change andevent.target.value
shows value with mask applied. My workaround to that is the code below but maybe library already allows that without accesing inputmask.