@@ -283,7 +283,7 @@ function sortedKeys(obj) {
283
283
284
284
function forEachSorted ( obj , iterator , context ) {
285
285
var keys = sortedKeys ( obj ) ;
286
- for ( var i = 0 ; i < keys . length ; i ++ ) {
286
+ for ( var i = 0 ; i < keys . length ; i ++ ) {
287
287
iterator . call ( context , obj [ keys [ i ] ] , keys [ i ] ) ;
288
288
}
289
289
return keys ;
@@ -624,7 +624,7 @@ function isElement(node) {
624
624
*/
625
625
function makeMap ( str ) {
626
626
var obj = { } , items = str . split ( "," ) , i ;
627
- for ( i = 0 ; i < items . length ; i ++ )
627
+ for ( i = 0 ; i < items . length ; i ++ )
628
628
obj [ items [ i ] ] = true ;
629
629
return obj ;
630
630
}
@@ -742,7 +742,7 @@ function copy(source, destination, stackSource, stackDest) {
742
742
var result ;
743
743
if ( isArray ( source ) ) {
744
744
destination . length = 0 ;
745
- for ( var i = 0 ; i < source . length ; i ++ ) {
745
+ for ( var i = 0 ; i < source . length ; i ++ ) {
746
746
result = copy ( source [ i ] , null , stackSource , stackDest ) ;
747
747
if ( isObject ( source [ i ] ) ) {
748
748
stackSource . push ( source [ i ] ) ;
@@ -759,7 +759,7 @@ function copy(source, destination, stackSource, stackDest) {
759
759
delete destination [ key ] ;
760
760
} ) ;
761
761
}
762
- for ( var key in source ) {
762
+ for ( var key in source ) {
763
763
if ( source . hasOwnProperty ( key ) ) {
764
764
result = copy ( source [ key ] , null , stackSource , stackDest ) ;
765
765
if ( isObject ( source [ key ] ) ) {
@@ -1047,10 +1047,10 @@ function tryDecodeURIComponent(value) {
1047
1047
function parseKeyValue ( /**string*/ keyValue ) {
1048
1048
var obj = { } , key_value , key ;
1049
1049
forEach ( ( keyValue || "" ) . split ( '&' ) , function ( keyValue ) {
1050
- if ( keyValue ) {
1050
+ if ( keyValue ) {
1051
1051
key_value = keyValue . replace ( / \+ / g, '%20' ) . split ( '=' ) ;
1052
1052
key = tryDecodeURIComponent ( key_value [ 0 ] ) ;
1053
- if ( isDefined ( key ) ) {
1053
+ if ( isDefined ( key ) ) {
1054
1054
var val = isDefined ( key_value [ 1 ] ) ? tryDecodeURIComponent ( key_value [ 1 ] ) : true ;
1055
1055
if ( ! hasOwnProperty . call ( obj , key ) ) {
1056
1056
obj [ key ] = val ;
0 commit comments