# is-multiple-of

> Is `value` a multiple of `multiple`?

Latest version **1.1.0** (published 2019-10-14) · ISC license · 0 weekly downloads

## Install

```sh
npm install is-multiple-of
pnpm add is-multiple-of
yarn add is-multiple-of
bun add is-multiple-of
```

## 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.0 |
| Published | 2019-10-14 |
| First published | 2019-10-13 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 2.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Me |
| Maintainers | fizzbuzz-npm |

## Links

- npm: https://www.npmjs.com/package/is-multiple-of
- Repository: https://github.com/buzzbuzz-npm/is-multiple-of
- Homepage: https://github.com/fizzbuzz-npm/is-multiple-of
- Issues: https://github.com/buzzbuzz-npm/is-multiple-of/issues
- npm.io page: https://npm.io/package/is-multiple-of

## Dependencies (3)

- [to-integer](https://npm.io/package/to-integer.md) ^1.0.1
- [lodash.isequal](https://npm.io/package/lodash.isequal.md) ^4.5.0
- [modulus-operator](https://npm.io/package/modulus-operator.md) ^1.0.0

## Recent versions

- 1.1.0 (latest) — 2019-10-14
- 1.0.0 — 2019-10-13

## README

# is-multiple-of
Is `value` a multiple of `multiple`?

### Usage
```javascript
const isMultipleOf = require("is-multiple-of");
console.log(isMultipleOf(6, 2)); //Prints "true"
console.log(isMultipleOf(70, 4)); //Prints "false"
console.log(isMultipleOf("50", "10")); //Prints "true"
```

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