15 lines
302 B
JavaScript
Raw Normal View History

2019-10-24 14:07:41 +02:00
'use strict';
/**
* Returns the attribute keys of the component related attributes
*/
function getComponentAttributes(attributes) {
return Object.keys(attributes).filter(key =>
['component', 'dynamiczone'].includes(attributes[key].type)
);
}
module.exports = {
getComponentAttributes,
};