(config)
| 116 | }; |
| 117 | |
| 118 | const getConfigPath = function (config) { |
| 119 | let configPath = config; |
| 120 | if (!isAbsolutePath(config)) { |
| 121 | // Resolve relative path |
| 122 | configPath = path.join(assetsPath, config); |
| 123 | } |
| 124 | return configPath; |
| 125 | }; |
| 126 | |
| 127 | /** |
| 128 | * Recursively resolve all dict "file" paths in a config object to absolute |
no test coverage detected