Files
DefinitelyTyped/types/seamless-immutable
Ross Harrison 17d81d04a9 Allow Seamless ImmutableArray.concat To accept seamless immutable arrays as argument. (#34842)
```
> const SI = require('seamless-immutable')
undefined
> SI.from([1,2,3]).concat(SI.from([4, 5, 6]).concat([7,8,9]))
[ 1, 2, 3, 4, 5, 6, 7, 8, 9 ]
```
2019-04-23 13:54:01 -05:00
..