(batch?: true | number)
| 25 | : [itemOrItems as T] |
| 26 | |
| 27 | const getBatchSize = (batch?: true | number) => |
| 28 | batch === true |
| 29 | ? 100 |
| 30 | : typeof batch === "number" && Number.isFinite(batch) && batch > 0 |
| 31 | ? Math.floor(batch) |
| 32 | : undefined |
| 33 | |
| 34 | export const extendRepo = < |
| 35 | T, |
no outgoing calls
no test coverage detected
searching dependent graphs…