Results 2 comments of

```js function get(path, obj, fb) { return path.split('.').reduce((res, key) => res[key] || fb, obj); } function parseTpl(template, map, fallback) { return template.replace(/\${([^{]+)}/g, (match, $1) => { const path = $1.trim();...