Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cjquines committed May 23, 2024
1 parent 6cd4486 commit 0572d4c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ The first "data-first" and "data-last" utility library designed especially for T

## Documentation

Full documentation on [remedajs.com/docs](https://remedajs.com/docs).
Read the full docs and API reference on [remedajs.com/docs](https://remedajs.com/docs).

For Lodash and Ramda users, check the function mapping on [remedajs.com/mapping](https://remedajs.com/mapping).
Migrating from Lodash or Ramda? Check the function mapping on [remedajs.com/mapping](https://remedajs.com/mapping).

## Features

Expand All @@ -28,14 +28,20 @@ For Lodash and Ramda users, check the function mapping on [remedajs.com/mapping]

```bash
npm install remeda
pnpm add remeda
yarn add remeda
bun install remeda
```

### Usage

```js
// Import everything:
import * as R from "remeda";

// Or import methods individually:
// import { pipe, tap, unique, take } from "remeda";

R.pipe(
[1, 2, 2, 3, 3, 4, 5, 6],
R.tap((value) => console.log(`Got ${value}`)),
Expand Down

0 comments on commit 0572d4c

Please sign in to comment.