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

27
util.js Normal file
View File

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