This repository was archived by the owner on Apr 19, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ const clientApp = {
162
162
163
163
if ( split . length < 1 ) return pv ;
164
164
165
- pv [ split [ 0 ] . trim ( ) ] = split [ 1 ] . trimLeft ( ) . trimRight ( ) ;
165
+ pv [ split [ 0 ] . trim ( ) ] = split . slice ( 1 ) . join ( ':' ) . trim ;
166
166
167
167
return pv ;
168
168
} , { } )
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ module.exports = {
82
82
83
83
if ( split . length < 1 ) return pv ;
84
84
85
- pv [ split [ 0 ] . trim ( ) ] = split [ 1 ] . trimLeft ( ) . trimRight ( ) ;
85
+ pv [ split [ 0 ] . trim ( ) ] = split . slice ( 1 ) . join ( ':' ) . trim ;
86
86
87
87
return pv ;
88
88
} , { } )
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ ${this.toInput(plan)}
200
200
201
201
if ( split . length < 1 ) return pv ;
202
202
203
- pv [ split [ 0 ] . trim ( ) ] = split . slice ( 1 ) . join ( ":" ) . trimLeft ( ) . trimRight ( ) ;
203
+ pv [ split [ 0 ] . trim ( ) ] = split . slice ( 1 ) . join ( ':' ) . trim ;
204
204
205
205
return pv ;
206
206
} , { } )
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ module.exports = {
89
89
90
90
if ( split . length < 1 ) return pv ;
91
91
92
- pv [ split [ 0 ] . trim ( ) ] = split . slice ( 1 ) . join ( ':' ) . trimLeft ( ) . trimRight ( ) ;
92
+ pv [ split [ 0 ] . trim ( ) ] = split . slice ( 1 ) . join ( ':' ) . trim ;
93
93
94
94
return pv ;
95
95
} , { } )
You can’t perform that action at this time.
0 commit comments