nantai-erp-wechat-mobile/filter/formatArray.wxs

14 lines
231 B
Plaintext
Raw Normal View History

2024-10-31 21:29:57 +08:00
var formatArray = {
checkIncludes: function (str, arr) {
var result = false
if (arr.indexOf(str) != -1) {
result = true
}
return result
}
}
module.exports = {
checkIncludes: formatArray.checkIncludes
}