UNPKG

ali-oss

Version:

aliyun oss(object storage service) node client

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'); }