* Returns a new deep copy of the current config object, or any part of the config if provided. * * @param {Object} config The part of the config to copy and serialize. * @returns {Object} The cloned config or part of the config
(config)
| 813 | * @returns {Object} The cloned config or part of the config |
| 814 | */ |
| 815 | static toObject(config) { |
| 816 | return JSON.parse(JSON.stringify(config)); |
| 817 | } |
| 818 | |
| 819 | /** |
| 820 | * Send a message to console.error once |
no outgoing calls
no test coverage detected