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

21
seq.default.js Normal file
View File

@@ -0,0 +1,21 @@
import at from './wrapperAt';
import chain from './chain';
import commit from './commit';
import flatMap from './wrapperFlatMap';
import lodash from './wrapperLodash';
import next from './next';
import plant from './plant';
import reverse from './wrapperReverse';
import tap from './tap';
import thru from './thru';
import toIterator from './toIterator';
import toJSON from './toJSON';
import value from './wrapperValue';
import valueOf from './valueOf';
import wrapperChain from './wrapperChain';
export default {
at, chain, commit, flatMap, lodash,
next, plant, reverse, tap, thru,
toIterator, toJSON, value, valueOf, wrapperChain
};