(maskCharData, index)
| 50890 | return maskCharData[maskCharData.length - 1].displayIndex; |
| 50891 | } |
| 50892 | function getLeftFormatIndex(maskCharData, index) { |
| 50893 | for(var i = maskCharData.length - 1; i >= 0; i--){ |
| 50894 | if (maskCharData[i].displayIndex < index) return maskCharData[i].displayIndex; |
| 50895 | } |
| 50896 | return maskCharData[0].displayIndex; |
| 50897 | } |
| 50898 | function clearRange(maskCharData, selectionStart, selectionCount) { |
| 50899 | for(var i = 0; i < maskCharData.length; i++)if (maskCharData[i].displayIndex >= selectionStart) { |
| 50900 | if (maskCharData[i].displayIndex >= selectionStart + selectionCount) break; |
nothing calls this directly
no outgoing calls
no test coverage detected