UNPKG

@typed/lenses

Version:

Strongly-typed functional lenses

5 lines 240 B
import { Lens } from './Lens'; import { pipe2 } from './pipe2'; import { fromProp } from './PropLens'; export const fromPath = (keys) => keys.reduce((lens, key) => pipe2(lens, fromProp(key)), Lens.id()); //# sourceMappingURL=PathLens.js.map