(bigint, options)
| 2789 | } |
| 2790 | |
| 2791 | function formatBigIntNoColor(bigint, options) { |
| 2792 | return formatBigInt( |
| 2793 | stylizeNoColor, |
| 2794 | bigint, |
| 2795 | options?.numericSeparator ?? inspectDefaultOptions.numericSeparator, |
| 2796 | ); |
| 2797 | } |
| 2798 | |
| 2799 | function formatWithOptionsInternal(inspectOptions, args) { |
| 2800 | const first = args[0]; |
no test coverage detected
searching dependent graphs…