5 lines
135 B
JavaScript
5 lines
135 B
JavaScript
function checkSpam(str) {
|
|
var lowerStr = str.toLowerCase();
|
|
|
|
return !!(~lowerStr.indexOf('viagra') || ~lowerStr.indexOf('xxx'));
|
|
}
|