# is-helper

> is-helper help me to identify the type of unknown.

Latest version **0.2.0** (published 2019-07-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-helper
pnpm add is-helper
yarn add is-helper
bun add is-helper
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.0 |
| Published | 2019-07-19 |
| First published | 2019-07-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=8 |
| Dependencies | 0 |
| Unpacked size | 2.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | qiurenbo |
| Maintainers | qiurenbo |
| Keywords | helper, type |

## Links

- npm: https://www.npmjs.com/package/is-helper
- Repository: https://github.com/qiurenbo/xxx
- Homepage: https://github.com/qiurenbo/xxx#readme
- Issues: https://github.com/qiurenbo/xxx/issues
- npm.io page: https://npm.io/package/is-helper

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 0.2.0 (latest) — 2019-07-19
- 0.1.0 — 2019-07-18
- 0.0.0 — 2019-07-18

## README

# is-helper[![npm version](https://badge.fury.io/js/is-helper.svg)](https://badge.fury.io/js/is-helper)[![Build Status](https://travis-ci.com/qiurenbo/is-helper.svg?token=YfiBLf3wyKtUxRiBhQan&branch=master)](https://travis-ci.com/qiurenbo/is-helper)

is-helper help me to identify the type of unknown.

## Install

```
$ npm install is-helper
```

## Usage

```js
const is = require("is-helper");

is.isString("hello world"); // => true

is.isNumber(123); // => true

is.isBoolean(false); // => true

is.isObject({}); // => true

is.isObject(null); // => true

is.isUndefined(undefined); // => true

is.isArray([1, 2, 3, 4, 5]); // => true
```

## API

### isType(unknown)

#### unknown

Type: any

#### return

Type: boolean

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