Skip to content

Commit

Permalink
Merge pull request #3 from Lukasz-pluszczewski/array-methods
Browse files Browse the repository at this point in the history
Updated readme
  • Loading branch information
Lukasz-pluszczewski authored Dec 14, 2017
2 parents 0213ff2 + 42257fe commit 8837594
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,21 @@ This library is in early stage of development. Currently there is only one well

##### Import functions you need
```
import { set, splice } from 'perfect-immutable';
import { set, splice, push, pop, shift, unshift, sort, reverse, immutableDelete } from 'perfect-immutable';
```
or
```
import immu from 'perfect-immutable';
immu.set();
immu.splice();
immu.push();
immu.pop();
immu.shift();
immu.unshift();
immu.sort();
immu.reverse();
immu.immutableDelete();
```

## Docs
Expand Down

0 comments on commit 8837594

Please sign in to comment.