UNPKG

hoangs-simple-math

Version:

A simple math lib (aka Hoang learns to node module)

9 lines (7 loc) 146 B
var PI = Math.PI; exports.getArea = function(r) { return PI * r * r; }; exports.getCircumference = function(r) { return 2 * PI * r; };