(input)
| 1756 | |
| 1757 | @staticmethod |
| 1758 | def is_json_encoded_object(input): |
| 1759 | try: |
| 1760 | return (isinstance(input, str) and ((input[0] == '{') or (input[0] == '['))) |
| 1761 | except Exception: |
| 1762 | return False |
| 1763 | |
| 1764 | @staticmethod |
| 1765 | def encode(string): |
no outgoing calls