UNPKG

redact-pii

Version:

Remove personally identifiable information from text.

7 lines (6 loc) 211 B
import { ISyncRedactor } from '../types'; export declare class NameRedactor implements ISyncRedactor { private replaceWith; constructor(replaceWith?: string); redact(textToRedact: string): string; }