(cmpName)
| 11626 | }; // Method to grab a config value for a particular component |
| 11627 | |
| 11628 | var getComponentConfig = function getComponentConfig(cmpName) { |
| 11629 | var key = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; |
| 11630 | // Return the particular config value for key for if specified, |
| 11631 | // otherwise we return the full config (or an empty object if not found) |
| 11632 | return key ? config_getConfigValue("".concat(cmpName, ".").concat(key)) : config_getConfigValue(cmpName) || {}; |
| 11633 | }; // Convenience method for getting all breakpoint names |
| 11634 | |
| 11635 | var getBreakpoints = function getBreakpoints() { |
| 11636 | return config_getConfigValue('breakpoints'); |
no test coverage detected