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 (8 loc) 272 B
/* Function to calculate the real count of cells (columns or rows). It's needed for calculating proper auto placement in IE. */ var realCellsCount = function realCellsCount(gap, cells) { return gap ? Math.ceil(+cells / 2) : +cells; }; export default realCellsCount;