/
githubmirror
/
ydb-embedded-ui
Обзор
Документация
Войти
/
githubmirror
/
ydb-embedded-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/containers/Tenant/Query/utils/replaceParams.ts
5 строк
312 B
Anton Standrik
feat: show query trace results (#1248)
04 сен 2024, 16:38
Не верифицирован
04 сен 2024, 16:38
2be0f0b
Код
Авторство
О чём код?
// Takes a template string and an object of parameters, and replaces placeholders in the template with corresponding values // from the parameters object. export function replaceParams(template: string, params: Record<string, string>) { return template.replace(/\${(\w+)}/g, (_, key) => params[key] || _); }