@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.
11 lines (9 loc) • 353 B
JavaScript
/*
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.
*/
var applyGap = function applyGap(cellIndex, isGap) {
return cellIndex > 1 && isGap ? cellIndex + (cellIndex - 1) : cellIndex;
};
export default applyGap;