(options, argv)
| 37 | * @returns {Config | Promise<Config>} config |
| 38 | */ |
| 39 | const handleFunction = (options, argv) => |
| 40 | typeof options === "function" ? options(argv.env, argv) : options; |
| 41 | |
| 42 | /** |
| 43 | * Stays synchronous for synchronous configs so callers that don't await keep working. |