UNPKG

hoangs-simple-math

Version:

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

7 lines (6 loc) 115 B
exports.getArea = function(r) { return r * r; }; exports.getCircumference = function(r) { return 4 * r; };