Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Update emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanvanzuriak committed Mar 15, 2018
1 parent 1d171f2 commit 9f6f534
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -4,7 +4,7 @@ A crystal utility library delivering modularity, performance, & extras.

Zap is a [lodash](https://lodash.com/) inspired library.

__⚠️ Under development - APIs will change. ⚠️__
__:warning: Under development - APIs will change. :warning:__

## Installation

Expand Down Expand Up @@ -34,7 +34,7 @@ Zap.chunk(['a', 'b', 'c', 4], 2) # [['a', 'b'], ['c', 4]]
Zap.chunk(['a', 'b', 'c', 4], 2) # [['a', 'b'], ['c', 4]]
```

__⚠️ Broken__
__:warning: Broken__
* `compact(array)` - Creates an array with all falsey values removed

```crystal
Expand Down Expand Up @@ -81,7 +81,7 @@ Zap.chunk(['a', 'b', 'c', 4], 2) # [['a', 'b'], ['c', 4]]
Zap.filter([1, 2, 3], ->(element : Int32, index : Int32) { element > 3 }) # [] of Int32
```

__⚠️ Broken__
__:warning: Broken__
* `flatten(array)` - Flattens array a single level deep

```crystal
Expand Down Expand Up @@ -178,7 +178,7 @@ Zap.chunk(['a', 'b', 'c', 4], 2) # [['a', 'b'], ['c', 4]]
Zap.sample([1]) # 1
```

__⚠️ Broken__
__:warning: Broken__
* `union(*values)` - Creates an array of unique values

```crystal
Expand Down Expand Up @@ -207,7 +207,7 @@ Zap.chunk(['a', 'b', 'c', 4], 2) # [['a', 'b'], ['c', 4]]

## Contributing

1. Fork it ( https://github.com/stepanvanzuriak/zap/fork )
1. Fork it (https://github.com/stepanvanzuriak/zap/fork)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
Expand Down

0 comments on commit 9f6f534

Please sign in to comment.