UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

9 lines (7 loc) 327 B
/* If gap is not defined or cellIndex is 1 just return cellIndex. If not, we need to add all previous gaps (cellIndex - 1). This is necessary because IE10+ takes gap as separate column. */ const applyGap = (cellIndex, isGap) => cellIndex > 1 && isGap ? cellIndex + (cellIndex - 1) : cellIndex; export default applyGap;