UNPKG

wot-design

Version:

Mobile UI components built on vue.js

9 lines (8 loc) 204 B
import { isDef, isNumeric } from './checkType' export function addUnit (value) { if (!isDef(value)) { return undefined } value = String(value) return isNumeric(value) ? `${value}px` : value }