Compare commits

..

No commits in common. "c7d33afe9d4176456706e629881d88ab2aab4e21" and "5f574204bb848ddded7bf59806185f3a623502bf" have entirely different histories.

4 changed files with 19 additions and 26 deletions

View File

@ -1,16 +1,17 @@
# @yanick/remeda
This package provides a few functions to the already awesome
[remeda](https://remedajs.com/) library that I really want, but wasn't able to
get in Remeda itself.
## Usage
Just import the additional functions from `@yanick/remeda-extra`.
This package adds a few functions to the already awesome
[remeda](https://remedajs.com/) library. For convenience, it
re-export everything that remeda has.
```
import { pipe } from 'remeda'; // as usual
import { matches } from '@yanick/remeda-extra'; // yanick-themed bonus feature!
import { matches, pipe } from '@yanick/remeda';
// equivalent to
import { pipe } from 'remeda';
import { matches } from '@yanick/remeda';
```
## Additional functions
@ -24,8 +25,7 @@ to return a boolean), or a value. If the value is an object, the matching
will be recursive.
```
import { pipe } from 'remeda';
import { matches } from '@yanick/remeda-extra';
import { matches, pipe } from '@yanick/remeda';
matches( 'potato', 'potato'); // => true
matches( 'potato', 'turnip'); // => false
@ -42,12 +42,9 @@ pipe( { 'a': 4, 'b': 5, 'c': 6 }, R.matches({ 'a': 4, 'c': 6 })) // => true
### `sample(target, size | { size: number, repeating: boolean })`
### `sample(size | { size: number, repeating: boolean })(target)`
Like the `sample` that comes with Remeda, but this one shuffles its output
automatically.
Returns random elements of the array. If `size` is bigger than the array
length and `repeating` is false, returns a number of samples equal to
the size of the whole array.
the size of the whole array.
```
sample([1,2,3,4],2); // [3,1]

View File

@ -6,8 +6,8 @@ tasks:
build: tsc
test:
deps: [ build ]
cmds:
- { task: build }
- vitest run src
pack: npm pack

View File

@ -1,14 +1,9 @@
{
"name": "@yanick/remeda-extra",
"name": "@yanick/remeda",
"version": "0.1.0",
"description": "A handful of added functions for Remeda",
"repository": "https://git.babyl.ca/yanick/remeda-extra.git",
"bugs": {
"url": "https:/git.babyl.ca/yanick/remeda-extra/issues"
},
"homepage": "https:/git.babyl.ca/yanick/remeda-extra/issues",
"description": "Remeda, plus a handful of added functions",
"type": "module",
"main": "dist/index.js",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},

View File

@ -1,2 +1,3 @@
export * from './matches.js';
export * from './sample.js';
export * from 'remeda';
export * from './matches';