UNPKG

devitzutilities

Version:

A simple NPM package to help you do stuff faster then ever!

15 lines (10 loc) 304 B
const config = require('../../../config.json') function roundString(num) { if (config.EnableDisable.calc.roundString == true) { let roundedNum = Math.round(num) return `${roundedNum}` } else { return config.DisabledError } } module.exports = roundString