function formatNumber()

in packages/svg-mixer/lib/sprite-value.js [1:4]


function formatNumber(num, decimalPlaces = 2) {
  const hasDecimals = num % 1 !== 0;
  return hasDecimals ? parseFloat(num).toFixed(decimalPlaces) : Math.round(num);
}