Bump to v4.0.0.

This commit is contained in:
John-David Dalton
2015-09-17 17:52:09 -07:00
parent 1d77dfa4b7
commit 54e7baecc3
675 changed files with 11257 additions and 8085 deletions

35
util.default.js Normal file
View File

@@ -0,0 +1,35 @@
import attempt from './attempt';
import bindAll from './bindAll';
import cond from './cond';
import conforms from './conforms';
import constant from './constant';
import flow from './flow';
import flowRight from './flowRight';
import identity from './identity';
import iteratee from './iteratee';
import matches from './matches';
import matchesProperty from './matchesProperty';
import method from './method';
import methodOf from './methodOf';
import mixin from './mixin';
import noop from './noop';
import nthArg from './nthArg';
import over from './over';
import overEvery from './overEvery';
import overSome from './overSome';
import property from './property';
import propertyOf from './propertyOf';
import range from './range';
import rangeRight from './rangeRight';
import times from './times';
import toPath from './toPath';
import uniqueId from './uniqueId';
export default {
attempt, bindAll, cond, conforms, constant,
flow, flowRight, identity, iteratee, matches,
matchesProperty, method, methodOf, mixin, noop,
nthArg, over, overEvery, overSome, property,
propertyOf, range, rangeRight, times, toPath,
uniqueId
};