UNPKG

rambdax

Version:

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

12 lines (9 loc) 242 B
import { curry } from './curry' import { defaultTo } from './defaultTo' import { path } from './path' function pathOrFn( defaultValue, list, obj ){ return defaultTo(defaultValue, path(list, obj)) } export const pathOr = curry(pathOrFn)