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