UNPKG

la-cosa-nostra

Version:

A Mafia bot designed to run in Discord - beware the traitors and the lies!

8 lines (4 loc) 168 B
module.exports = function round (value, decimals=2, rounder=Math.round) { var multiple = Math.pow(10, decimals); return rounder(value * multiple) / multiple; };