5 lines
86 B
Plaintext
5 lines
86 B
Plaintext
|
var sub = function(str,s){
|
||
|
return str.indexOf(s) != -1;
|
||
|
}
|
||
|
module.exports.sub = sub;
|