You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
227 B

1 year ago
  1. /* eslint-disable */
  2. var REGEXP = getRegExp('^-?\d+(\.\d+)?$');
  3. function addUnit(value) {
  4. if (value == null) {
  5. return undefined;
  6. }
  7. return REGEXP.test('' + value) ? value + 'px' : value;
  8. }
  9. module.exports = addUnit;