mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2026-06-06 03:56:57 +08:00
8 lines
152 B
Plaintext
8 lines
152 B
Plaintext
function indexOf(arr, value) {
|
|
if (arr.indexOf(value) < 0) {
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
module.exports.indexOf = indexOf; |