gptbot/bingchat/tools.wxs
2023-03-23 14:06:20 +08:00

8 lines
136 B
XML

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