| 12 | * @returns {string} |
| 13 | */ |
| 14 | const dictionary = keys => { |
| 15 | const fields = []; |
| 16 | for (const key of keys) |
| 17 | fields.push(`${stringify(key)}: ${key}`); |
| 18 | return `{ ${fields.join(',')} }`; |
| 19 | }; |
| 20 | |
| 21 | /** |
| 22 | * Resolve properly config files relative URLs. |