Skip to content

Commit e45c6af

Browse files
chore: refactor typeofrequest function (#60)
1 parent b4e746d commit e45c6af

File tree

1 file changed

+7
-15
lines changed

1 file changed

+7
-15
lines changed

index.js

+7-15
Original file line numberDiff line numberDiff line change
@@ -116,27 +116,19 @@ function hasbody (req) {
116116
*
117117
* this.is('html'); // => false
118118
*
119-
* @param {String|Array} types...
120-
* @return {String|false|null}
119+
* @param {Object} req
120+
* @param {(String|Array)} types...
121+
* @return {(String|false|null)}
121122
* @public
122123
*/
123124

124125
function typeofrequest (req, types_) {
125-
var types = types_
126-
127126
// no body
128-
if (!hasbody(req)) {
129-
return null
130-
}
131-
127+
if (!hasbody(req)) return null
132128
// support flattened arguments
133-
if (arguments.length > 2) {
134-
types = new Array(arguments.length - 1)
135-
for (var i = 0; i < types.length; i++) {
136-
types[i] = arguments[i + 1]
137-
}
138-
}
139-
129+
var types = arguments.length > 2
130+
? Array.prototype.slice.call(arguments, 1)
131+
: types_
140132
// request content type
141133
var value = req.headers['content-type']
142134

0 commit comments

Comments
 (0)