(pathString: string)
| 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 = () => |
| 112 | typeof process !== "undefined" && "env" in process && typeof process.env === "object" ? process.env : {} |
no test coverage detected