UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

12 lines (9 loc) 238 B
import { curry } from './curry' import { defaultTo } from './defaultTo' import { view } from './view' function viewOrFn( fallback, lens, input ){ return defaultTo(fallback, view(lens, input)) } export const viewOr = curry(viewOrFn)