> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ark-dev.org/llms.txt
> Use this file to discover all available pages before exploring further.

# ARK CLEAN v3.2

> Limpiador de metadatos ultrarrápido con detección de amenazas.

**ARK CLEAN** es un sanitizador de archivos con enfoque en privacidad. Elimina metadatos, detecta amenazas y verifica integridad.

## Características

* **Soporte Office**: DOCX, XLSX, PPTX.
* **Seguridad**: Análisis de entropía mejorado.
* **Privacidad**: Zero-Knowledge Architecture.

## Instalación

```bash theme={"dark"}
npm install ark_clean
```

## Uso en navegador

```html theme={"dark"}
<script type="module">
  import init, { WasmFileProcessor } from './node_modules/ark_clean/ark_clean.js';
  
  async function boot() {
    await init();
    const processor = new WasmFileProcessor();
    // Procesar archivos...
  }
</script>
```

Más info en GitHub.
