MCPcopy Index your code
hub / github.com/Effect-TS/effect / unmakePathString

Function unmakePathString

packages/effect/src/internal/configProvider.ts:109–109  ·  view source on GitHub ↗
(pathString: string)

Source from the content-addressed store, hash-verified

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 : {}

Callers 3

enumerateChildrenFunction · 0.85
fromMapFunction · 0.85
splitIndexInKeysFunction · 0.85

Calls 1

splitMethod · 0.80

Tested by

no test coverage detected