2015-08-13 05:19:04 +00:00
|
|
|
import constant from './constant';
|
2015-08-05 07:25:34 +00:00
|
|
|
import freeze from './freeze';
|
2015-08-07 03:48:04 +00:00
|
|
|
import is from './is';
|
2015-08-12 06:53:05 +00:00
|
|
|
import _if from './if';
|
2015-08-06 06:10:16 +00:00
|
|
|
import ifElse from './ifElse';
|
2015-08-05 07:25:34 +00:00
|
|
|
import map from './map';
|
2015-08-01 15:13:25 +00:00
|
|
|
import omit from './omit';
|
|
|
|
import reject from './reject';
|
2015-08-05 07:25:34 +00:00
|
|
|
import update from './update';
|
2015-08-07 04:40:36 +00:00
|
|
|
import updateIn from './updateIn';
|
|
|
|
import withDefault from './withDefault';
|
2015-08-12 15:35:10 +00:00
|
|
|
import { _ } from './util/curry';
|
2015-08-05 07:25:34 +00:00
|
|
|
|
2015-08-05 11:29:30 +00:00
|
|
|
const u = update;
|
2015-07-31 16:16:19 +00:00
|
|
|
|
2015-08-12 15:35:10 +00:00
|
|
|
u._ = _;
|
2015-08-13 05:19:04 +00:00
|
|
|
u.constant = constant;
|
2015-08-12 06:53:05 +00:00
|
|
|
u.if = _if;
|
2015-08-06 06:10:16 +00:00
|
|
|
u.ifElse = ifElse;
|
2015-08-07 03:48:04 +00:00
|
|
|
u.is = is;
|
2015-08-05 11:29:30 +00:00
|
|
|
u.freeze = freeze;
|
|
|
|
u.map = map;
|
|
|
|
u.omit = omit;
|
|
|
|
u.reject = reject;
|
2015-08-07 04:40:36 +00:00
|
|
|
u.update = update;
|
|
|
|
u.updateIn = updateIn;
|
2015-08-05 11:29:30 +00:00
|
|
|
u.withDefault = withDefault;
|
2015-08-01 15:13:25 +00:00
|
|
|
|
2015-08-05 11:29:30 +00:00
|
|
|
export default u;
|