utils.wxs 469 B

1234567891011121314151617181920212223242526
  1. /* utils */
  2. /**
  3. * addUnit */
  4. // 为 css 添加单位
  5. function addUnit(value) {
  6. var REGEXP = getRegExp('^\d+(\.\d+)?$');
  7. if (value == null) {
  8. return undefined;
  9. }
  10. return REGEXP.test('' + value) ? value + 'px' : value;
  11. }
  12. function isArray(array) {
  13. return array && array.constructor === 'Array';
  14. }
  15. function isObject(obj) {
  16. return obj && obj.constructor === 'Object';
  17. }
  18. module.exports = {
  19. addUnit: addUnit,
  20. isArray: isArray,
  21. isObject: isObject,
  22. };