function hasNoBody()

in src/node/main.ts [140:142]


function hasNoBody(method: string, code: number) {
	return method === 'HEAD' || /* Informational */ (code >= 100 && code < 200) || /* No Content */  code === 204 || /* Not Modified */ code === 304;
}