File tree 1 file changed +7
-15
lines changed
1 file changed +7
-15
lines changed Original file line number Diff line number Diff line change @@ -116,27 +116,19 @@ function hasbody (req) {
116
116
*
117
117
* this.is('html'); // => false
118
118
*
119
- * @param {String|Array } types...
120
- * @return {String|false|null }
119
+ * @param {Object } req
120
+ * @param {(String|Array) } types...
121
+ * @return {(String|false|null) }
121
122
* @public
122
123
*/
123
124
124
125
function typeofrequest ( req , types_ ) {
125
- var types = types_
126
-
127
126
// no body
128
- if ( ! hasbody ( req ) ) {
129
- return null
130
- }
131
-
127
+ if ( ! hasbody ( req ) ) return null
132
128
// 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_
140
132
// request content type
141
133
var value = req . headers [ 'content-type' ]
142
134
You can’t perform that action at this time.
0 commit comments