util.wxs 174 B

12345678910
  1. function indexOf(array, value) {
  2. if (array.indexOf(value) > -1) {
  3. return true
  4. } else {
  5. return false
  6. }
  7. }
  8. module.exports = {
  9. indexOf: indexOf,
  10. }