mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +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'
|
|
}
|
|
}
|