/
ton-org
/
blueprint
Обзор
Документация
Войти
/
ton-org
/
blueprint
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
develop
src/template.ts
11 строк
305 B
krigga
feat: tact support
21 мар 2023, 17:54
Не верифицирован
21 мар 2023, 17:54
12b69f9
Код
Авторство
О чём код?
import path from 'path'; export const TEMPLATES_DIR = path.join(__dirname, 'templates'); export function executeTemplate(contents: string, replaces: { [k: string]: string }) { for (const k in replaces) { contents = contents.replaceAll(`{{${k}}}`, replaces[k]); } return contents; }