4 lines
157 B
JavaScript
4 lines
157 B
JavaScript
|
|
export const highLight = function (label, keyword) {
|
||
|
|
return label.replace(keyword, `<span class="t-search__result-item--highLight">${keyword}</span>`);
|
||
|
|
};
|