(path: ReadonlyArray<string>)
| 106 | ): ConfigProvider.ConfigProvider => { |
| 107 | const { pathDelim, seqDelim } = Object.assign({}, { pathDelim: "_", seqDelim: "," }, options) |
| 108 | const makePathString = (path: ReadonlyArray<string>): string => pipe(path, Arr.join(pathDelim)) |
| 109 | const unmakePathString = (pathString: string): ReadonlyArray<string> => pathString.split(pathDelim) |
| 110 | |
| 111 | const getEnv = () => |
no test coverage detected