mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
13 lines
225 B
XML
13 lines
225 B
XML
/* eslint-disable */
|
|
var REGEXP = getRegExp('^\d+(\.\d+)?$');
|
|
|
|
function addUnit(value) {
|
|
if (value == null) {
|
|
return undefined;
|
|
}
|
|
|
|
return REGEXP.test('' + value) ? value + 'px' : value;
|
|
}
|
|
|
|
module.exports = addUnit;
|