# shell-sort

> CommonJS shell sort

Latest version **1.0.0** (published 2015-01-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install shell-sort
pnpm add shell-sort
yarn add shell-sort
bun add shell-sort
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2015-01-02 |
| First published | 2015-01-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Tadeu Zagallo |
| Maintainers | tadeuzagallo |
| Keywords | shell-sort, sort, javascript, array |

## Links

- npm: https://www.npmjs.com/package/shell-sort
- Repository: github.com/tadeuzagallo/shell-sort
- Homepage: https://github.com/tadeuzagallo/shell-sort
- Issues: https://github.com/tadeuzagallo/shell-sort/issues
- npm.io page: https://npm.io/package/shell-sort

## Recent versions

- 1.0.0 (latest) — 2015-01-02

## README

# Shell sort

CommonJS shell sort implementation using Sedgewick's gap sequence

## Usage

```js
var shellSort = require('shell-sort');

// Signature

shellSort(array [, compareFunction] [, reverse]);

// Possible usages

shellSort(array);
shellSort(array, compareFunction);
shellSort(array, compareFunction, true);
shellSort(array, undefined, true);

```

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