vr-shopxo-uniapp/utils/tools.wxs

9 lines
149 B
XML

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