(match)
| 1158 | var literal = false; |
| 1159 | // Check whether a format character is doubled |
| 1160 | var lookAhead = function(match) { |
| 1161 | var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match); |
| 1162 | if (matches) |
| 1163 | iFormat++; |
| 1164 | return matches; |
| 1165 | }; |
| 1166 | // Extract a number from the string value |
| 1167 | var getNumber = function(match) { |
| 1168 | lookAhead(match); |
no outgoing calls
no test coverage detected