Skip to content

Commit

Permalink
emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
eranhirsch committed May 24, 2024
1 parent f7cfac0 commit 0aff921
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/src/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Fully written in TypeScript for powerful, type-safe, and functional utilities.

<InstallCommands />

## Expansive
## 🧰 Expansive

Remeda offers a wide range of common everyday utility functions so that you
don't have to deal with the minutiae of writing them yourself. We ensure that
Expand All @@ -37,7 +37,7 @@ R.sortBy(
);
```

## Fully Typed
## 👷 Fully Typed

Libraries like Lodash and Ramda are written in JavaScript, with types added
later. Remeda, on the other hand, is fully written in TypeScript! This means
Expand All @@ -60,7 +60,7 @@ const withRemeda = R.map(DATA, (x) => x.toString());
// ^? [string, string, string]
```

## Functional
## 🦾 Functional

Functional programming is beneficial, making code more readable. However, there
are situations where you don't need "pipes" and want to call just a single
Expand Down Expand Up @@ -127,7 +127,7 @@ _.flow(
)(DATA); // broken typings in TS :(
```

## Lazy Evaluation
## 🔧 Lazy Evaluation

You might have noticed the [`pipe`](/docs#pipe) function in the above example.
The pipe function allows you to structure complex data transformations in the
Expand Down Expand Up @@ -160,7 +160,7 @@ const result = R.pipe(
// iterate 3
```

## Trustworthy!
## 🔬 Trustworthy!

All this wouldn't be worth much if it didn't work. That's why Remeda has an
extensive test suite that offers 100% coverage. We also test all functions on
Expand All @@ -170,7 +170,7 @@ just runtime behavior but also types!
We use the strictest TypeScript settings and extensive linting to ensure that
nothing slips through the cracks.

## Community
## 🥳 Community

Remeda is provided with an MIT license and is open to contributions from the
community. We are always looking for new contributors and are happy to help you
Expand Down

0 comments on commit 0aff921

Please sign in to comment.