7 lines
199 B
Plaintext
Raw Normal View History

2025-04-28 09:21:04 +08:00
var highLight = function (label, keyword) {
return label.replace(keyword, '<span class="t-search__result-item--highLight">' + keyword + '</span>');
};
module.exports = {
highLight: highLight,
};