(remaining)
| 2187 | } |
| 2188 | |
| 2189 | const remainingText = (remaining) => `... ${remaining} more item${remaining > 1 ? 's' : ''}`; |
| 2190 | |
| 2191 | function formatNumber(fn, number, numericSeparator) { |
| 2192 | // Format -0 as '-0'. Checking `number === -0` won't distinguish 0 from -0. |
no outgoing calls
no test coverage detected
searching dependent graphs…