Tag the value and dump it to a compact JSON string.
(self, value: t.Any)
| 319 | return value |
| 320 | |
| 321 | def dumps(self, value: t.Any) -> str: |
| 322 | """Tag the value and dump it to a compact JSON string.""" |
| 323 | return dumps(self.tag(value), separators=(",", ":")) |
| 324 | |
| 325 | def loads(self, value: str) -> t.Any: |
| 326 | """Load data from a JSON string and deserialized any tagged objects.""" |