# is-number-like

> Checks whether provided parameter looks like a number

Latest version **1.0.8** (published 2017-06-24) · ISC license · 0 weekly downloads

## Install

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

## Health

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

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

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.8 |
| Published | 2017-06-24 |
| First published | 2016-08-02 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | separate (@types/is-number-like) |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Vigour.io |
| Maintainers | vigour-io |
| Keywords | is-number, typeof, number-like |

## Links

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

## Dependencies (1)

- [lodash.isfinite](https://npm.io/package/lodash.isfinite.md) ^3.3.2

## 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.0.8 (latest) — 2017-06-24
- 1.0.7 — 2016-12-14
- 1.0.6 — 2016-12-12
- 1.0.5 — 2016-12-12
- 1.0.3 — 2016-10-13
- 1.0.2 — 2016-10-07
- 1.0.1 — 2016-08-02
- 1.0.0 — 2016-08-02

## README

# is-number-like

<!-- VDOC.badges travis; standard; npm; coveralls -->
<!-- DON'T EDIT THIS SECTION (including comments), INSTEAD RE-RUN `vdoc` TO UPDATE -->
[![Build Status](https://travis-ci.org/vigour-io/is-number-like.svg?branch=master)](https://travis-ci.org/vigour-io/is-number-like)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/)
[![npm version](https://badge.fury.io/js/is-number-like.svg)](https://badge.fury.io/js/is-number-like)
[![Coverage Status](https://coveralls.io/repos/github/vigour-io/is-number-like/badge.svg?branch=master)](https://coveralls.io/github/vigour-io/is-number-like?branch=master)

<!-- VDOC END -->

<!-- VDOC.jsdoc isNumberLike -->
<!-- DON'T EDIT THIS SECTION (including comments), INSTEAD RE-RUN `vdoc` TO UPDATE -->
#### var looksLikeNumber = isNumberLike(val)

Checks whether provided parameter looks like a number
- **val** (*any*) - the value to check
- **returns** (*boolean*) looksLikeNumber - `true` if `val` looks like a number, `false` otherwise

<!-- VDOC END -->


```javascript
const isNumberLike = require('is-number-like')
isNumberLike('2') // true
isNumberLike('a') // false
```

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