Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/afeiship/next-quick-sort
- Owner: afeiship
- License: mit
- Created: 2021-03-09T01:30:43.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-03-09T01:59:56.000Z (over 3 years ago)
- Last Synced: 2024-10-10T10:35:32.498Z (about 1 month ago)
- Topics: algorithm, next, quick, sort
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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