@shopgate/engage
Version:
Shopgate's ENGAGE library.
5 lines • 328 B
JavaScript
/**
* Retrieves only the properties without a subDisplayGroup.
* @param {Array} properties The properties to filter.
* @return {Array}
*/export function getPropertiesWithoutSubgroup(properties){return properties.filter(function(_ref){var subDisplayGroup=_ref.subDisplayGroup;return!subDisplayGroup||subDisplayGroup==='';});}