# number-properties

> find different properties of a number

Latest version **2.1.0** (published 2022-02-09) · ISC license · 0 weekly downloads

## Install

```sh
npm install number-properties
pnpm add number-properties
yarn add number-properties
bun add number-properties
```

## 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 | 2.1.0 |
| Published | 2022-02-09 |
| First published | 2022-02-03 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | yogya singhal |
| Maintainers | yogyasinghal |

## Links

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

## Recent versions

- 2.1.0 (latest) — 2022-02-09
- 2.0.11 — 2022-02-08
- 2.0.10 — 2022-02-08
- 2.0.9 — 2022-02-08
- 2.0.8 — 2022-02-07
- 2.0.7 — 2022-02-07
- 2.0.6 — 2022-02-07
- 2.0.5 — 2022-02-07
- 2.0.4 — 2022-02-07
- 2.0.3 — 2022-02-07
- 2.0.2 — 2022-02-07
- 2.0.1 — 2022-02-07
- 2.0.0 — 2022-02-03
- 1.0.0 — 2022-02-03

## README

# Project Title

---

> Try Different Properties of number with basic functionalities

### It has basic functions like

- isSquareRoot : used to find if number is a perfect square or not
- addNum : used to add two numbers
- subNum : used to subtract two numbers
- mulNum : used to get product of two numbers
- divNum : used to get Division of two numbers
- squareNum : used to get square of a number

### How to Import 

const numberProperties = require("number-properties");

### Sample Input

- console.log( numberProperties.isSquareRoot(16) );
- console.log( numberProperties.addNum(5,8) );
- console.log( numberProperties.subNum(8,5));
- console.log( numberProperties.squareNum(5));
- console.log(numberProperties.mulNum(3,8));
- console.log(numberProperties.divNum(24,4));

### Sample Output

- true
- 13
- 3
- 25
- 24
- 6

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