# sorting-helper

> some small lib to help you sorting problem, i have bubblesort, selectionsort, and mergesort

Latest version **0.1.2** (published 2017-07-19) · ISC license · 0 weekly downloads

## Install

```sh
npm install sorting-helper
pnpm add sorting-helper
yarn add sorting-helper
bun add sorting-helper
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2017-07-19 |
| First published | 2017-07-19 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Antoni Angga |
| Maintainers | antoniangga |
| Keywords | Sorting, Sort, BubbleSort, MergeSort, SelectionSort |

## Links

- npm: https://www.npmjs.com/package/sorting-helper
- Repository: https://github.com/AntoniAngga/npm-sorting
- Homepage: https://github.com/AntoniAngga/npm-sorting#readme
- Issues: https://github.com/AntoniAngga/npm-sorting/issues
- npm.io page: https://npm.io/package/sorting-helper

## Recent versions

- 0.1.2 (latest) — 2017-07-19

## README

# npm-sorting

A Simple Sorting Library to help you sorting, i have 3 Sorting now, and the sorting with Array data.
* * *

## How To Install
```bash
npm install --save npm-sorting
```
* * *

## How To Use

```Javascript
const sort = require('npm-sorting')

let data = [10,5,2,5,70,99,88,100,40,16]
//This For Bubble Sort
console.log(sort.bubbleSort(data))
//This For Merge Sort
console.log(sort.mergeSort(data))
//This For Selection Sort
console.log(sort.selectionSort(data))
```

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