UNPKG

269 BJavaScriptView Raw
1// 移植自 field-form https://github.com/react-component/field-form/blob/master/src/utils/validateUtil.ts#L21
2export function replaceMessage(template, kv) {
3 return template.replace(/\$\{\w+\}/g, str => {
4 const key = str.slice(2, -1);
5 return kv[key];
6 });
7}
\No newline at end of file