(size)
| 76 | const defaultSizeAlgorithm = () => 1; |
| 77 | |
| 78 | function extractSizeAlgorithm(size) { |
| 79 | if (size === undefined) return defaultSizeAlgorithm; |
| 80 | validateFunction(size, 'strategy.size'); |
| 81 | return size; |
| 82 | } |
| 83 | |
| 84 | function customInspect(depth, options, name, data) { |
| 85 | if (depth < 0) |
no outgoing calls
no test coverage detected
searching dependent graphs…