Data Transformer
Move structured data between JSON, CSV, TSV, YAML, TOML and XML. Preserve nested structure when possible or explicitly project it into a filterable table before export.
[
{
"name": "LENS",
"engine": "File Intelligence",
"status": "live",
"score": 96
},
{
"name": "WIPE",
"engine": "Privacy",
"status": "live",
"score": 97
},
{
"name": "QR Scan",
"engine": "QR Intelligence",
"status": "live",
"score": 98
},
{
"name": "DIFF",
"engine": "Universal Diff",
"status": "live",
"score": 100
}
]NO TABULAR COLUMNS
JSON / CSV / TSV use strict deterministic parsers. YAML accepts maps, lists and scalars while rejecting anchors/tags/multi-document streams. TOML accepts tables, arrays-of-tables, dotted keys, arrays and inline tables; multiline strings are rejected. XML uses an XXE-safe element profile with attributes, text and repeated nodes; DTD/entities are rejected instead of silently changing data.
Parsing and serialization happen inside the browser. Source data is not sent to 2XBR.
JSON, CSV, TSV, YAML, TOML and XML are live with an explicit coverage contract. Unsupported advanced syntax stops with an error instead of being guessed.
The public utility has a deliberate browser limit and rejects XML DTD/entity declarations rather than exposing an unsafe parser surface.