* Appends values to current config * * @param {Object } additionalConfig * @return {Object }
(additionalConfig)
| 195 | * @return {Object<string, *>} |
| 196 | */ |
| 197 | static append(additionalConfig) { |
| 198 | return (config = deepMerge(config, additionalConfig)) |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Resets config to default |
no test coverage detected