UNPKG

@e-group/utils

Version:

eGroup team utils that share across projects.

10 lines (9 loc) 288 B
export interface Variables { [key: string]: string | undefined; } /** * Convert double curly brackets with variables into text string. * For example, * Hello, {{personName}}. -> Hello, Jerry. */ export default function replacer<V = Variables>(text: string, variables: V): string;