Bump to v3.0.0.

This commit is contained in:
John-David Dalton
2015-01-10 12:55:03 -08:00
committed by jdalton
commit 5379c1996b
350 changed files with 12910 additions and 0 deletions

23
chain.js Normal file
View File

@@ -0,0 +1,23 @@
import chain from './chain/chain';
import lodash from './chain/lodash';
import reverse from './chain/reverse';
import tap from './chain/tap';
import thru from './chain/thru';
import toJSON from './chain/toJSON';
import toString from './chain/toString';
import value from './chain/value';
import valueOf from './chain/valueOf';
import wrapperChain from './chain/wrapperChain';
export default {
'chain': chain,
'lodash': lodash,
'reverse': reverse,
'tap': tap,
'thru': thru,
'toJSON': toJSON,
'toString': toString,
'value': value,
'valueOf': valueOf,
'wrapperChain': wrapperChain
};