File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -117,17 +117,15 @@ exports.contentDisposition = deprecate.function(contentDisposition,
117117/**
118118 * Parse accept params `str` returning an
119119 * object with `.value`, `.quality` and `.params`.
120- * also includes `.originalIndex` for stable sorting
121120 *
122121 * @param {String } str
123- * @param {Number } index
124122 * @return {Object }
125123 * @api private
126124 */
127125
128- function acceptParams ( str , index ) {
126+ function acceptParams ( str ) {
129127 var parts = str . split ( / * ; * / ) ;
130- var ret = { value : parts [ 0 ] , quality : 1 , params : { } , originalIndex : index } ;
128+ var ret = { value : parts [ 0 ] , quality : 1 , params : { } }
131129
132130 for ( var i = 1 ; i < parts . length ; ++ i ) {
133131 var pms = parts [ i ] . split ( / * = * / ) ;
You can’t perform that action at this time.
0 commit comments