UNPKG

@shopgate/engage

Version:
5 lines 328 B
/** * 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==='';});}