(self, character)
| 322 | return ''.join(string) |
| 323 | |
| 324 | def isJSONNumeric(self, character): |
| 325 | return (True if NUMERIC_CHAR.find(character) != - 1 else False) |
| 326 | |
| 327 | def readJSONQuotes(self): |
| 328 | if (self.context.escapeNum()): |
no test coverage detected