updeep-remeda/lib/index.js

33 lines
673 B
JavaScript
Raw Normal View History

2017-04-19 00:55:46 +00:00
import constant from './constant'
import freeze from './freeze'
import is from './is'
import _if from './if'
import ifElse from './ifElse'
import map from './map'
import omit from './omit'
import omitBy from './omitBy'
import reject from './reject'
2018-11-28 00:56:13 +00:00
import update, { omitted } from './update'
2017-04-19 00:55:46 +00:00
import updateIn from './updateIn'
import withDefault from './withDefault'
import { _ } from './util/curry'
2015-08-05 07:25:34 +00:00
2017-04-19 00:55:46 +00:00
const u = update
2017-04-19 00:55:46 +00:00
u._ = _
u.constant = constant
u.if = _if
u.ifElse = ifElse
u.is = is
u.freeze = freeze
u.map = map
u.omit = omit
u.omitBy = omitBy
u.reject = reject
u.update = update
u.updateIn = updateIn
2018-11-28 00:56:13 +00:00
u.omitted = omitted
2017-04-19 00:55:46 +00:00
u.withDefault = withDefault
2015-08-01 15:13:25 +00:00
export default u