Cleanup / simplify code.

This commit is contained in:
Richard Lewis 2018-03-29 17:52:34 +01:00
parent 6181ca642f
commit b1e7dcf216

View File

@ -49,8 +49,7 @@ function getUserWidgets() {
* @return {[object]} Array containing current / active user widgets
*/
function getUserWidgetsArray() {
const userWidgetContent = getUserWidgets();
return Object.keys(userWidgetContent).map((key) => userWidgetContent[key]);
return Object.values(getUserWidgets());
}
/**