(text, spaces)
| 1365 | } |
| 1366 | |
| 1367 | function indent(text, spaces) { |
| 1368 | const prefix = " ".repeat(spaces); |
| 1369 | return text |
| 1370 | .split("\n") |
| 1371 | .map((line) => `${prefix}${line}`) |
| 1372 | .join("\n"); |
| 1373 | } |
| 1374 | |
| 1375 | function arrayArg(value) { |
| 1376 | if (value == null) { |
no outgoing calls
no test coverage detected