qq小程序适配

This commit is contained in:
devil
2020-08-10 22:05:54 +08:00
parent c5ef26d523
commit 9b27fd044f
43 changed files with 461 additions and 199 deletions

View File

@ -0,0 +1,8 @@
function indexOf(arr, value) {
if (arr.indexOf(value) < 0) {
return false;
} else {
return true;
}
}
module.exports.indexOf = indexOf;