util.wxs 162 B

123456789
  1. // .wxs文件
  2. function indexOf(arr, value) {
  3. if (arr.indexOf(value) < 0) {
  4. return false;
  5. } else {
  6. return true;
  7. }
  8. }
  9. module.exports.indexOf = indexOf;