mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-03 13:32:10 +08:00
7 lines
115 B
JavaScript
7 lines
115 B
JavaScript
module.exports = {
|
|
toBoolean(val) {
|
|
if (val === '') return val
|
|
return val === 'true' || val == '1'
|
|
}
|
|
}
|