1.0.1 • Published 5 years ago

is-multiple-of-three-and-five v1.0.1

Weekly downloads
6
License
ISC
Repository
github
Last release
5 years ago

is-multiple-of-three-and-five

Is value a multiple of 3 and 5?

Usage

const isMultipleOf3and5 = require("is-multiple-of-three-and-five");
console.log(isMultipleOf3and5(15)); //Prints "true"
console.log(isMultipleOf3and5(10)); //Prints "false"
console.log(isMultipleOf3and5("6")); //Prints "false"