@sygn/mutually-exclusive
v0.1.2
Published
check whether the characters of two strings are mutually exclusive
Downloads
4
Maintainers
Readme
mutually-exclusive
Check whether the characters of two strings are mutually exclusive
const mutuallyExclusive = require('@sygn/mutually-exclusive');
console.log(mutuallyExclusive('mutually', 'exclusive'));
// false
// you can add a handler for handling type errors (see message-events npm package)
mutuallyExclusive.onError(console.error);