9 lines
182 B
XML
9 lines
182 B
XML
var includes = function() {
|
|
var show = false;
|
|
if(arguments[0].indexOf(arguments[1]) !== -1) {
|
|
return show = true;
|
|
}
|
|
}
|
|
module.exports = {
|
|
includes: includes
|
|
}; |