Find the symmetric difference of two string arrays.
npm install symmetric-difference-strings
$ npm i symmetric-difference-strings
`
Usage
`javascript
import symmetricDifference from 'symmetric-difference-strings';
const diff = symmetricDifference(
['hello', 'world', 'foo', 'foo', 'foo'],
['hello', 'world', 'foo', 'bar']
);
console.log(diff);
// => ['foo', 'foo', 'bar']
``