1.0.0 • Published 2 years ago

is-divisible-by-zero v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

is-divisible-by-zero

Simple npm package that lets you check is a number is divisible by zero!

Usage

Installing

npm i is-divisible-by-zero -P

Importing

const isDivisibleByZero = require("is-divisible-by-zero");

Usage

console.log(isDivisibileByZero(2));

API

isDivisibleByZero(number: Number): Boolean

Returns true if the input number is divisible by zero and false if it is not.