@xfjs/xf-utils-taro
0.0.8 • Public • Published
迅蜂商城-taro工具包
gt(1, 3)
// 1 > 3 = false
gte(1, 3)
// 1 >= 3 = false
lt(1, 3)
// 1 < 3 = true
lte(1, 3)
// 1 <= 3 = true
add(1, 3)
// 1 + 3 = 4
subtract(1, 3)
// 1 - 3 = -2
multiply(1, 3)
// 1 * 3 = 3
divide(1, 2)
// 1 / 3 = 0.33
toArray('' | null | undefined | {} | [] | [ 0 ])
// [] | [] | [] : [] : [] | [ 0 ]
toObject('' | null | undefined | [] | {} | { key: 1 })
// {} | {} | {} : {} : {} | { key: 1 }
toNumber('' | null | undefined | [] | {} | '1' | 1)
// 0 | 0 | 0 : 0 : 0 | 1 | 1
isNull(null)
// true
isArray([])
// true
isObject({})
// true
isUndefined(undefined)
// true
isEmptyArray([])
// true
isEmptyObject({})
// true
/@xfjs/xf-utils-taro/
//
Package Sidebar
Install
npm i @xfjs/xf-utils-taro
Weekly Downloads