property ServerResponse.prototype.strictContentLength
Usage in Deno
```typescript
import { ServerResponse } from "node:node__http.d.ts";
```
If set to `true`, Node.js will check whether the `Content-Length` header value and the size of the body, in bytes, are equal.
Mismatching the `Content-Length` header value will result
in an `Error` being thrown, identified by `code:``'ERR_HTTP_CONTENT_LENGTH_MISMATCH'`.