inputmask-core
inputmask-core copied to clipboard
Wrong getRawValue function behaviour
Documentation:
var mask = new InputMask({pattern: '1111 1111', value: '98781'})
mask.getValue()
// → '9878 1___'
mask.getRawValue()
// → '98781'
Reality:
var mask = new InputMask({pattern: '1111 1111', value: '98781'})
mask.getValue()
// → '9878 1___'
mask.getRawValue()
// → '98781___'
Hi, I noticed this is still an issue. Any update ? My version "^2.2.0"
regards