File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1001,11 +1001,11 @@ exports.setHeaded = (bsConfig, args) => {
1001
1001
} ;
1002
1002
1003
1003
exports . isConflictingBooleanValues = ( value1 , value2 ) => {
1004
- return ( value1 . toString ( ) == "true" && value2 . toString ( ) == "false" ) || ( value1 . toString ( ) == "false" && value2 . toString ( ) == "true" )
1004
+ return ( value1 . toString ( ) === "true" && value2 . toString ( ) === "false" ) || ( value1 . toString ( ) === "false" && value2 . toString ( ) = == "true" )
1005
1005
} ;
1006
1006
1007
1007
exports . isNonBooleanValue = ( value ) => {
1008
- return value . toString ( ) != "true" && value . toString ( ) != "false" ;
1008
+ return value . toString ( ) !== "true" && value . toString ( ) != = "false" ;
1009
1009
} ;
1010
1010
1011
1011
exports . setInteractiveCapability = ( bsConfig ) => {
You can’t perform that action at this time.
0 commit comments