/** randomInt :: Number → Number → Number */constrandomInt = from => to =>Math.floor(Math.random() * to + from)
/** randomPoint :: Number → Number → Point */constrandomPoint = cols => rows => ({
x: randomInt(0)(cols),
y: randomInt(0)(rows)
})
module.exports = {
randomPoint
}