UNPKG

moltres-react

Version:
6 lines (5 loc) 176 B
const closestCenter = (x, spacing) => { const plus = x % spacing < spacing / 2 ? 0 : spacing return Math.floor(x / spacing) * spacing + plus } export default closestCenter