updeep-remeda/lib/index.js

32 lines
670 B
JavaScript

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';
import update from './update';
import updateIn from './updateIn';
import withDefault from './withDefault';
import { _ } from './util/curry';
const u = update;
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;
u.withDefault = withDefault;
module.exports = u;