2019-11-13 18:49:02 +01:00

15 lines
302 B
JavaScript

'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,
};