UNPKG

@nocobase/plugin-file-manager

Version:

Provides files storage services with files collection template and attachment field.

7 lines (5 loc) 225 B
import { THeaderEncoding } from '../../types/experimental'; export function encoder(str: string, encoding: THeaderEncoding = 'utf-8') { if (encoding === 'utf-8') return str; return Buffer.from(str).toString('latin1'); }