UNPKG

@happyvibess/node-cleaner

Version:

🧹 Interactive CLI tool to find and clean node_modules directories and free up space

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