(value, digits)
| 898 | } |
| 899 | |
| 900 | function formatDecimal(value, digits) { |
| 901 | if (!Number.isFinite(value)) return ""; |
| 902 | return value.toFixed(digits); |
| 903 | } |
| 904 | |
| 905 | function formatSnapshotDescription(snapshot) { |
| 906 | if (snapshot.description) return snapshot.description; |
no outgoing calls
no test coverage detected