Blame view

src/wxcomponents/vant/common/utils.js 797 Bytes
289f85d9e   Adam   提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  export function isDef(value) {
      return value !== undefined && value !== null;
  }
  export function isObj(x) {
      const type = typeof x;
      return x !== null && (type === 'object' || type === 'function');
  }
  export function isNumber(value) {
      return /^\d+(\.\d+)?$/.test(value);
  }
  export function range(num, min, max) {
      return Math.min(Math.max(num, min), max);
  }
  export function nextTick(fn) {
      setTimeout(() => {
          fn();
      }, 1000 / 30);
  }
  let systemInfo = null;
  export function getSystemInfoSync() {
      if (systemInfo == null) {
          systemInfo = wx.getSystemInfoSync();
      }
      return systemInfo;
  }
  export function addUnit(value) {
      if (!isDef(value)) {
          return undefined;
      }
      value = String(value);
      return isNumber(value) ? `${value}px` : value;
  }