Comparing version 1.14.9 to 1.15.9
@@ -268,2 +268,24 @@ # Array Utility Functions Documentation | ||
## `quickSortDescending` | ||
Sorts an array in descending order using the Quick Sort algorithm. | ||
### Parameters | ||
- `arr`: The array to sort. | ||
### Returns | ||
A new array containing the sorted elements in descending order. | ||
### Example | ||
```typescript | ||
import { quickSortDescending } from 'auxin'; | ||
const arr = [3, 1, 4, 1, 5, 9, 2, 6, 5]; | ||
const sortedArr = quickSortDescending(arr); | ||
console.log(sortedArr); // Output: [9, 6, 5, 5, 4, 3, 2, 1, 1] | ||
``` | ||
<div align="center"> | ||
@@ -270,0 +292,0 @@ |
{ | ||
"name": "auxin", | ||
"version": "1.14.9", | ||
"version": "1.15.9", | ||
"description": "Auxin is a powerful Node.js utility toolkit that simplifies common tasks, boosting your development productivity.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
94987