# is-ugly-number

> determine given number is ugly number or not

Latest version **1.0.2** (published 2021-08-16) · ISC license · 0 weekly downloads

## Install

```sh
npm install is-ugly-number
pnpm add is-ugly-number
yarn add is-ugly-number
bun add is-ugly-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.0.2 |
| Published | 2021-08-16 |
| First published | 2021-08-12 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | avinash |
| Maintainers | avinashkulal |
| Keywords | uglynumber, number |

## Links

- npm: https://www.npmjs.com/package/is-ugly-number
- Repository: https://github.com/AvinashKulal/isUglyNumber
- Homepage: https://github.com/AvinashKulal/isUglyNumber#readme
- Issues: https://github.com/AvinashKulal/isUglyNumber/issues
- npm.io page: https://npm.io/package/is-ugly-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.0.2 (latest) — 2021-08-16
- 1.0.1 — 2021-08-12
- 1.0.0 — 2021-08-12

## README

# is-ugly-number
Determines if a number is a ugly number or not.



## Install

`npm install --save is-ugly-number`


## Usage

```js

const isUgly = require('is-ugly-number');

isUgly(120);
//=> true

isUgly(101);
//=> false

isUgly('3960');
//=> TypeError: Expects number got string

isUgly(); 
//=> TypeError: Expects number got undefined

```

## Author

avinash <avinashkulal1977@gmail.com>

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