# help-url

> Small js package I use to help me deal with url and query parameters

Latest version **0.1.0** (published 2021-08-29) · MIT license · 0 weekly downloads

## Install

```sh
npm install help-url
pnpm add help-url
yarn add help-url
bun add help-url
```

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2021-08-29 |
| First published | 2021-08-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Node | ^12.20.0 \|\| ^14.13.1 \|\| >=16.0.0 |
| Dependencies | 0 |
| Unpacked size | 7.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Paul Nodet |
| Maintainers | pnxdxt |
| Keywords | helper, small, template, javascript |

## Links

- npm: https://www.npmjs.com/package/help-url
- Repository: https://github.com/pnxdxt/help-url
- Homepage: https://github.com/pnxdxt/help-url#readme
- Issues: https://github.com/pnxdxt/help-url/issues
- npm.io page: https://npm.io/package/help-url

## Alternatives

- [lodash.assign](https://npm.io/package/lodash.assign.md) — 2.3M weekly downloads
- [lodash.chunk](https://npm.io/package/lodash.chunk.md) — 1.8M weekly downloads
- [react-native-ios-utilities](https://npm.io/package/react-native-ios-utilities.md) — 138.5K weekly downloads
- [@technically/lodash](https://npm.io/package/@technically/lodash.md) — 50.9K weekly downloads
- [@fluid-topics/ft-icon](https://npm.io/package/@fluid-topics/ft-icon.md) — 20.6K weekly downloads

## Recent versions

- 0.1.0 (latest) — 2021-08-29

## README

# help-url
> Small js package I use to help me deal with url and query parameters

[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/xojs/xo)
[![GitHub workflow status](https://img.shields.io/github/workflow/status/pnxdxt/help-url/CI)](https://github.com/pnxdxt/help-url)
[![npm bundle size](https://img.shields.io/bundlephobia/min/help-url)](https://bundlephobia.com/package/help-url)
[![npm downloads](https://img.shields.io/npm/dt/help-url)](https://www.npmjs.com/package/help-url)

## Install
```
$ npm install help-url
```
## Import

This package is pure [ESM](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules). It cannot be `require()`'d from CommonJS.

Use `import foo from 'foo'` instead of `const foo = require('foo')` to import the package.

```js
// Load entire build
import * as helpUrl from 'help-url';

// Load by method
import {getQueryString} from 'help-url';
```
If the package is used in an async context, you could use [`await import(…)`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#dynamic_imports) from CommonJS instead of `require(…)`.

**You also need to make sure you're on the latest minor version of Node.js. At minimum Node.js 12.20, 14.14, or 16.0.**

Read more here: [sindresorhus/esm-package](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c)


## Usage

```js

main([1,2,3], (element) => typeof element === 'string');
//=> false

main(['1', '2', '3'], (element) => typeof element === 'string');
//=> true
```

## License

MIT © [Paul Nodet](https://pnodet.com)

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