# ascii-url-encoder

> ASCII url ecoder and decoder

Latest version **1.2.0** (published 2022-05-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install ascii-url-encoder
pnpm add ascii-url-encoder
yarn add ascii-url-encoder
bun add ascii-url-encoder
```

## Health

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

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.0 |
| Published | 2022-05-18 |
| First published | 2022-05-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 9.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | prince-ao |
| Maintainers | prince-ao |
| Keywords | ascii, url, encoder, url-encoder, ascii-url-ecoder |

## Links

- npm: https://www.npmjs.com/package/ascii-url-encoder
- Repository: https://github.com/prince-ao/ascii-url-encoder
- Issues: https://github.com/prince-ao/ascii-url-encoder/issues
- npm.io page: https://npm.io/package/ascii-url-encoder

## Alternatives

- [base64url](https://npm.io/package/base64url.md) — 6.1M weekly downloads
- [get-installed-path](https://npm.io/package/get-installed-path.md) — 502.9K weekly downloads
- [@uppy/url](https://npm.io/package/@uppy/url.md) — 185.8K weekly downloads
- [@d3fc/d3fc-shape](https://npm.io/package/@d3fc/d3fc-shape.md) — 16.2K weekly downloads
- [localizer](https://npm.io/package/localizer.md) — 226 weekly downloads

## Recent versions

- 1.2.0 (latest) — 2022-05-18
- 1.1.0 — 2022-05-17
- 1.0.0 — 2022-05-14

## README

# ascii-url-encoder

An ASCII url ecoder and decoder. 

⚠️ The decoder is just
```typescript
decodeURIComponent(str)
```
All that was added is parentesis encoding.

## Installation

```bash
yarn add ascii-url-encoder
```

or

```bash
npm intall ascii-url-encoder
```

## Usage

```typescript
import { encode, decode } from "ascii-url-encoder";

const encodedString = encode("(lorem) ipsum");

const decodedString = decode("%28lorem%29%20ipsum");
```

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