14 lines
231 B
Plaintext
14 lines
231 B
Plaintext
|
var formatArray = {
|
||
|
checkIncludes: function (str, arr) {
|
||
|
var result = false
|
||
|
if (arr.indexOf(str) != -1) {
|
||
|
result = true
|
||
|
}
|
||
|
return result
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
checkIncludes: formatArray.checkIncludes
|
||
|
}
|