UNPKG

@unclepaul/allcountjs

Version:

The open source framework for rapid business application development with Node.js

8 lines (7 loc) 174 B
export default function absRound (number) { if (number < 0) { return Math.round(-1 * number) * -1; } else { return Math.round(number); } }