# my-util-js-functions

> Javascript implementation of widely known algorithms, functions and data structures.

Latest version **0.0.5-beta.3** (published 2025-01-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install my-util-js-functions
pnpm add my-util-js-functions
yarn add my-util-js-functions
bun add my-util-js-functions
```

## Health

**Score 25/100 (F)** — status: maintenance-mode.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: stale; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5-beta.3 |
| Published | 2025-01-12 |
| First published | 2022-07-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 54 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | bertolo1988 |
| Maintainers | bertolo1988 |
| Keywords | algorithm, data-structures, functions, quicksort, permutator |

## Links

- npm: https://www.npmjs.com/package/my-util-js-functions
- Repository: https://github.com/bertolo1988/my-util-js-functions
- Homepage: https://github.com/bertolo1988/my-util-js-functions#readme
- Issues: https://github.com/bertolo1988/my-util-js-functions/issues
- npm.io page: https://npm.io/package/my-util-js-functions

## Dependencies (1)

- [lodash](https://npm.io/package/lodash.md) ^4.17.21

## Recent versions

- 0.0.5-beta.3 (latest) — 2025-01-12
- 0.0.5-beta.2 — 2025-01-12
- 0.0.5-beta.1 — 2024-12-22
- 0.0.5-beta.0 — 2022-07-08
- 0.0.4-beta.0 — 2022-07-06
- 0.0.3-beta.0 — 2022-07-04
- 0.0.2-beta.0 — 2022-07-04
- 0.0.1-beta.0 — 2022-07-04

## README

# my-util-js-functions

Javascript implementation of widely known algorithms, functions and data structures.

## Install

`npm i --save my-util-js-functions`

## How to use?

### Example1 - quicksort


```javascript
const { quicksort } = require('my-util-js-functions')

const unsortedArray = [3, 2, 1, 10, -5]
const sortedArray = quicksort(unsortedArray)
console.log(sortedArray)
```

### Example2 - fibonacciBigInt


```javascript
const { fibonacciBigInt } = require('my-util-js-functions')

console.log(fibonacciBigInt(BigInt(125)))
```

## Functions available

Check [here](src/index.js).

---
_Source: https://npm.io/package/my-util-js-functions · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
