UNPKG

react-carousel-query

Version:

A infinite carousel component made with react that handles the pagination for you.

11 lines 214 B
/** * Determine if the passed argument is an integer. * * @private * @param {*} n * @category Type * @return {Boolean} */ export default Number.isInteger || function _isInteger(n) { return n << 0 === n; };