var BetweenPointsY = function (point1, point2){ return Math.atan2(point2.x - point1.x, point2.y - point1.y); } ; module.exports = BetweenPointsY;