Fix boolean comparison

This commit is contained in:
Cohee
2023-12-02 00:04:38 +02:00
parent a2f293b6af
commit 690c058a46

View File

@ -572,7 +572,7 @@ export function countOccurrences(string, character) {
* @returns {boolean} True if the string is true, false otherwise. * @returns {boolean} True if the string is true, false otherwise.
*/ */
export function isTrueBoolean(arg) { export function isTrueBoolean(arg) {
return ['on', 'true', '1'].includes(arg.trim().toLowerCase()); return ['on', 'true', '1'].includes(arg?.trim()?.toLowerCase());
} }
/** /**
@ -581,7 +581,7 @@ export function isTrueBoolean(arg) {
* @returns {boolean} True if the string is false, false otherwise. * @returns {boolean} True if the string is false, false otherwise.
*/ */
export function isFalseBoolean(arg) { export function isFalseBoolean(arg) {
return ['off', 'false', '0'].includes(arg.trim().toLowerCase()); return ['off', 'false', '0'].includes(arg?.trim()?.toLowerCase());
} }
/** /**