UNPKG
uni-ui-plus
Version:
latest (0.0.70)
0.0.70
0.0.69
0.0.67
0.0.66
0.0.65
0.0.64
0.0.63
0.0.62
0.0.61
0.0.60
0.0.59
0.0.58
0.0.57
0.0.56
0.0.55
0.0.54
0.0.53
0.0.52
0.0.5
0.0.4
0.0.3
0.0.2
🦄基于uni-ui的二次封装的uniapp组件库
github.com/iceywu/uni-ui-plus
iceywu/uni-ui-plus
uni-ui-plus
/
components
/
_utils
/
px-check.ts
4 lines
(3 loc)
•
128 B
text/typescript
View Raw
1
2
3
4
export
function
pxCheck
(
value
:
string
|
number
):
string
{
return
Number
.
isNaN
(
Number
(value)) ?
String
(value) :
`
${value}
px`
}