New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

auxin

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auxin - npm Package Compare versions

Comparing version 1.14.9 to 1.15.9

22

docs/arrayutils.md

@@ -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 @@

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc