pub.wxs 106 B

1234
  1. function includes(arr, value) {
  2. return arr.indexOf(value) >= 0;
  3. }
  4. module.exports = {includes: includes};