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) => {
10011001} ;
10021002
10031003exports . 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" )
10051005} ;
10061006
10071007exports . isNonBooleanValue = ( value ) => {
1008- return value . toString ( ) != "true" && value . toString ( ) != "false" ;
1008+ return value . toString ( ) !== "true" && value . toString ( ) != = "false" ;
10091009} ;
10101010
10111011exports . setInteractiveCapability = ( bsConfig ) => {
You can’t perform that action at this time.
0 commit comments