All files / src/http/utility fetch-plaintext.ts

100% Statements 6/6
100% Branches 0/0
100% Functions 1/1
100% Lines 6/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23    5x 5x                 9x 9x   9x           5x  
import HeaderMap from 'http/type/header-map';
import StatusCode from 'http/enum/status-code';
import ContentType from 'http/enum/content-type';
import fetchBuffer from 'http/utility/fetch-buffer';
 
interface ResponseData {
	body: string;
	headers: HeaderMap;
	status_code: StatusCode;
}
 
async function fetchPlaintext(url: string): Promise<ResponseData> {
	const result = await fetchBuffer(url, ContentType.TEXT);
	const body = result.body.toString('utf8');
 
	return {
		...result,
		body
	};
}
 
export default fetchPlaintext;