You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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');
|
|
}
|