UNPKG

@plteam/chat-ui

Version:

CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript

10 lines (9 loc) 269 B
export const langReplace = (text, replace) => { if (text && replace) { for (const key in replace) { const value = replace[key]?.toString() ?? ''; text = text.replace(`{{${key}}}`, value); } } return text; };