# ecmascript-is-number

> EcmaScript library to check value is valid number or not 🙌

Latest version **1.1.4** (published 2020-06-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install ecmascript-is-number
pnpm add ecmascript-is-number
yarn add ecmascript-is-number
bun add ecmascript-is-number
```

## 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.1.4 |
| Published | 2020-06-19 |
| First published | 2020-06-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Vaibhav Arora |
| Maintainers | varora1406 |
| Keywords | number, ecmascript, javascript, is-number |

## Links

- npm: https://www.npmjs.com/package/ecmascript-is-number
- Repository: https://github.com/varora1406/ecmascript-is-number
- Homepage: https://github.com/varora1406/ecmascript-is-number#readme
- Issues: https://github.com/varora1406/ecmascript-is-number/issues
- npm.io page: https://npm.io/package/ecmascript-is-number

## Alternatives

- [random-seedable](https://npm.io/package/random-seedable.md) — 27.9K weekly downloads
- [n2words](https://npm.io/package/n2words.md) — 22.2K weekly downloads
- [@stdlib/math-base-special-factorialln](https://npm.io/package/@stdlib/math-base-special-factorialln.md) — 5.7K weekly downloads
- [@stdlib/math-base-special-abs2](https://npm.io/package/@stdlib/math-base-special-abs2.md) — 1.7K weekly downloads
- [commons-math-interpolation](https://npm.io/package/commons-math-interpolation.md) — 1.4K weekly downloads

## Recent versions

- 1.1.4 (latest) — 2020-06-19
- 1.1.3 — 2020-06-19
- 1.1.2 — 2020-06-05
- 1.1.1 — 2020-06-01
- 1.0.1 — 2020-06-01

## README

# EcmaScript-library-template

[![GitHub license](https://img.shields.io/github/license/varora1406/ecmascript-library-template?style=flat)](https://github.com/varora1406/ecmascript-library-template/blob/master/LICENSE) [![Tests](https://github.com/varora1406/ecmascript-library-template/workflows/CI/badge.svg)](https://github.com/varora1406/ecmascript-library-template/actions) [![codecov](https://codecov.io/gh/varora1406/ecmascript-library-template/branch/master/graph/badge.svg)](https://codecov.io/gh/varora1406/ecmascript-library-template) ![npm](https://img.shields.io/npm/varora1406/ecmascript-library-template)

Check if a value is a number

## Installation

```
npm install ecmascript-is-number --save-dev
```

OR

```
yarn add ecmascript-is-number --dev
```

## Usage

```
    const isNumber = require('ecmascript-is-number');

    isNumber(1) // returns true
    isNumber('1') // return true
    isNumber('a') // return false
```

See [tests](https://github.com/varora1406/ecmascript-is-number/blob/af4a45f7f2e297ce673c15be9f97529f8abcfb29/lib/index.test.js) for more examples

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