DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
250 Bytes
var makeString = require('./helper/makeString');
module.exports = function(str, substr) {
str = makeString(str);
substr = makeString(substr);
if (str.length === 0 || substr.length === 0) return 0;
return str.split(substr).length - 1;
};