mrr.sj.front/node_modules/ali-oss/lib/common/utils/encoder.ts

7 lines
225 B
TypeScript
Raw Permalink Normal View History

2026-03-25 15:27:45 +08:00
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');
}