Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/afeiship/next-quick-sort

Quick sort for next.
https://github.com/afeiship/next-quick-sort

algorithm next quick sort

Last synced: about 1 month ago
JSON representation

Quick sort for next.

Awesome Lists containing this project

README

        

# next-quick-sort
> Quick sort for next.

[![version][version-image]][version-url]
[![license][license-image]][license-url]
[![size][size-image]][size-url]
[![download][download-image]][download-url]

## installation
```bash
npm install -S @jswork/next-quick-sort
```

## usage
```js
import '@jswork/next-quick-sort';

const array = [3, 44, 38, 5, 47, 15, 36, 26, 27, 2, 46, 4, 19, 50, 48];
nx.quickSort(array);
// [2, 3, 4, 5, 15, 19, 26, 27, 36, 38, 44, 46, 47, 48, 50]
```

## license
Code released under [the MIT license](https://github.com/afeiship/next-quick-sort/blob/master/LICENSE.txt).

[version-image]: https://img.shields.io/npm/v/@jswork/next-quick-sort
[version-url]: https://npmjs.org/package/@jswork/next-quick-sort

[license-image]: https://img.shields.io/npm/l/@jswork/next-quick-sort
[license-url]: https://github.com/afeiship/next-quick-sort/blob/master/LICENSE.txt

[size-image]: https://img.shields.io/bundlephobia/minzip/@jswork/next-quick-sort
[size-url]: https://github.com/afeiship/next-quick-sort/blob/master/dist/next-quick-sort.min.js

[download-image]: https://img.shields.io/npm/dm/@jswork/next-quick-sort
[download-url]: https://www.npmjs.com/package/@jswork/next-quick-sort