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.
25 lines
550 B
25 lines
550 B
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
|
|
},
|
|
getRandom(num) {
|
|
var random = Math.floor(
|
|
(Math.random() + Math.floor(Math.random() * 9 + 1)) *
|
|
Math.pow(10, num - 1),
|
|
)
|
|
return random
|
|
},
|
|
}
|