0.1.2 • Published 2 years ago

@sygn/mutually-exclusive v0.1.2

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

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);