is-coprime
v1.0.0
Published
Check if two integers are coprime.
Downloads
228
Maintainers
Readme
is-coprime
Check if two integers are coprime.
Two integers are said to be relatively prime, mutually prime, or coprime if the only positive integer that evenly divides both of them is 1.
Install
$ npm install --save is-coprime
Usage
var isCoprime = require('is-coprime');
isCoprime(2, 5);
//=> true
isCoprime(12, 21);
//=> false
License
MIT © Andreas Gillström