10 lines
168 B
XML
10 lines
168 B
XML
function indexOf(str, val) {
|
|
if (str.indexOf(val) != -1) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
module.exports = {
|
|
indexOf: indexOf
|
|
} |