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.

7 lines (6 loc) 240 B
/* Function to calculate the real count of cells (columns or rows). It's needed for calculating proper auto placement in IE. */ const realCellsCount = (gap, cells) => gap ? Math.ceil(+cells / 2) : +cells; export default realCellsCount;