UNPKG

ans-ui

Version:

A vue-based UI components library for analysys

16 lines (14 loc) 273 B
const formatSize = (prop) => { const propType = typeof prop if (propType === 'number') { return prop + 'px' } if (propType === 'string') { if (/^\d+$/.test(prop)) return parseInt(prop, 10) + 'px' return prop } return null } export { formatSize }