mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-04 04:49:33 +08:00
8 lines
152 B
XML
8 lines
152 B
XML
function indexOf(arr, value) {
|
|
if (arr.indexOf(value) < 0) {
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
module.exports.indexOf = indexOf; |