vr-shopxo-source/sourcecode/toutiao/utils/tools.sjs

8 lines
152 B
Plaintext
Raw Normal View History

2020-08-10 15:56:56 +00:00
function indexOf(arr, value) {
if (arr.indexOf(value) < 0) {
return false;
} else {
return true;
}
}
module.exports.indexOf = indexOf;