Last active
August 29, 2015 14:03
-
-
Save lxe/9a3daad2f59a3ff3ee59 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| widgetCollections.map(function (widgetCollection) { | |
| return Object.keys(widgetCollection).reduce(function (widgets, widgetKey) { | |
| if (widget.isFrobbable()) { | |
| widgets.push({ | |
| widgetName: widgetKey, | |
| widgetValue: decombabulateWidgetValue({ | |
| decombobulator: config.getDecombobilator(), | |
| verbose: false | |
| }, widgetCollection[widgetKey]) | |
| }); | |
| } | |
| return widgets; | |
| }, []); | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment