(payload: Any)
| 392 | |
| 393 | |
| 394 | def _json_for_html_script(payload: Any) -> str: |
| 395 | return ( |
| 396 | json.dumps(payload, ensure_ascii=False) |
| 397 | .replace("<", "\\u003c") |
| 398 | .replace(">", "\\u003e") |
| 399 | .replace("&", "\\u0026") |
| 400 | .replace("\u2028", "\\u2028") |
| 401 | .replace("\u2029", "\\u2029") |
| 402 | ) |
| 403 | |
| 404 | |
| 405 | class FastgrindBinaryReader: |
no outgoing calls
no test coverage detected