Blame view

utils/assist.js 338 Bytes
7fa943eb   梁灏   init
1
  // 判断参数是否是其中之一
7c15ac9e   梁灏   add Message compo...
2
  export function oneOf (value, validList) {
7fa943eb   梁灏   init
3
4
5
6
7
8
      for (let i = 0; i < validList.length; i++) {
          if (value === validList[i]) {
              return true;
          }
      }
      return false;
7c15ac9e   梁灏   add Message compo...
9
10
11
12
  }
  
  export function camelcaseToHyphen (str) {
      return str.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
7fa943eb   梁灏   init
13
  }