Find the first non-repeating character in a string.
npm install non-repeating-charbash
npm install non-repeating-char
`
Usage
`javascript
const firstNonRepeatingChar = require('non-repeating-char');
const result = firstNonRepeatingChar('swiss');
console.log(result); // Output will be 'w'
``