Licence
MIT
Version
0.1.2
Deps
2
Size
4 kB
Vulns
0
Weekly
0
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);