UNPKG

n8n-editor-ui

Version:

Workflow Editor UI for n8n

7 lines (6 loc) 236 B
const smartDecimal = (value, decimals = 2) => { if (Number.isInteger(value)) return value; if (value.toString().split(".")[1].length <= decimals) return value; return Number(value.toFixed(decimals)); }; export { smartDecimal as t };