# standard-library-extensions

> JavaScript standard library extensions for building complex and scalable web applications.

Latest version **1.0.0** (published 2021-12-07) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install standard-library-extensions
pnpm add standard-library-extensions
yarn add standard-library-extensions
bun add standard-library-extensions
```

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2021-12-07 |
| First published | 2021-02-01 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | ESM |
| Node | ^12.20.0 \|\| ^14.13.1 \|\| >=16.0.0 |
| Dependencies | 0 |
| Unpacked size | 61.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Ziyu |
| Maintainers | zwang |

## Links

- npm: https://www.npmjs.com/package/standard-library-extensions
- Repository: https://github.com/oddui/standard-library-extensions
- Homepage: https://github.com/oddui/standard-library-extensions#readme
- Issues: https://github.com/oddui/standard-library-extensions/issues
- npm.io page: https://npm.io/package/standard-library-extensions

## Recent versions

- 1.0.0 (latest) — 2021-12-07
- 0.3.1 — 2021-07-19
- 0.2.1 — 2021-04-13
- 0.1.5 — 2021-03-06
- 0.1.4 — 2021-02-02
- 0.1.3 — 2021-02-01
- 0.1.2 — 2021-02-01
- 0.1.1 — 2021-02-01
- 0.1.0 — 2021-02-01

## README

# Standard Library Extensions

JavaScript standard library extensions for building complex and scalable web applications.

### Design choices

- Align with conventions and interfaces of JavaScript standard built-in objects. e.g. `TreeMap` extends the built-in `Map` interface.
- Concise code. Some methods use recursion for more compact code. e.g. most methods in `TreeMap` and the `find` method in `UnionFind`. These methods' time complexity is no worse than O(n) so it's not likely to reach the call stack limit.
- No external dependencies

## Install

Copy and paste code. Or use a package manager:

    npm install standard-library-extensions

```js
import { binarySearch } from "standard-library-extensions";
```

## Release

    npm publish

It automatically publishes the package when a new release is created.

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