mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-27 03:31:46 +00:00
8 lines
232 B
JavaScript
8 lines
232 B
JavaScript
|
|
const true_values = ["true", "yes", "y", "1", "on"];
|
||
|
|
|
||
|
|
module.exports.parseBool = (value) => {
|
||
|
|
if (Object.is(value, null) || value === undefined) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
return true_values.includes(String(value).toLowerCase());
|
||
|
|
}
|