Skip to content

Commit 7d08386

Browse files
committed
Resolved comments
1 parent ee719cd commit 7d08386

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/helpers/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1001,11 +1001,11 @@ exports.setHeaded = (bsConfig, args) => {
10011001
};
10021002

10031003
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")
10051005
};
10061006

10071007
exports.isNonBooleanValue = (value) => {
1008-
return value.toString() != "true" && value.toString() != "false";
1008+
return value.toString() !== "true" && value.toString() !== "false";
10091009
};
10101010

10111011
exports.setInteractiveCapability = (bsConfig) => {

0 commit comments

Comments
 (0)