You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
382 B
18 lines
382 B
4 years ago
|
module.exports = {
|
||
|
toBoolean(val) {
|
||
|
if (typeof val === 'boolean') return val
|
||
|
if (val === '') return val
|
||
|
return val === 'true' || val == '1'
|
||
|
},
|
||
|
cookieToJson(cookie) {
|
||
|
if (!cookie) return {}
|
||
|
let cookieArr = cookie.split(';')
|
||
|
let obj = {}
|
||
|
cookieArr.forEach((i) => {
|
||
|
let arr = i.split('=')
|
||
|
obj[arr[0]] = arr[1]
|
||
|
})
|
||
|
return obj
|
||
|
},
|
||
|
}
|