@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
10 lines (9 loc) • 463 B
TypeScript
/**
* WordObfuscator — inserts zero-width characters into sensitive words so
* that naive string-matching by upstream APIs cannot detect them.
*
* For example, "proxy" becomes "p\u200Broxy" (ZWS after the first character),
* making the text visually identical to humans but different at the byte level.
*/
import type { CloakingPlugin } from "../../../types/index.js";
export declare function createWordObfuscator(customWords?: string[]): CloakingPlugin;