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