UNPKG

@scayle/storefront-core

Version:

Collection of essential utilities to work with the Storefront API

6 lines (5 loc) 235 B
export const getShippingDates = (packages) => { const min = packages.map((p) => p.deliveryDate.min).sort(); const max = packages.map((p) => p.deliveryDate.max).sort(); return [min?.[0] || null, max?.[max.length - 1] || null]; };