Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 541 Bytes

req.is.md

File metadata and controls

27 lines (19 loc) · 541 Bytes

req.is()

Returns true if this request's declared "Content-Type" matches the specified media/mime type.

Specifically, this method matches the given type against this request's "Content-Type" header.

Usage

req.is(type);

Example

Assuming the request contains a "Content-Type" header, "text/html; charset=utf-8":

req.is('html');
// -> true
req.is('text/html');
// -> true
req.is('text/*');
// -> true