Removes duplicate characters from a string.
The string from which to remove duplicate characters.
Will throw an error if the provided argument is not a string.
strRemoveDuplicateChars('hello');//=> 'helo' Copy
strRemoveDuplicateChars('hello');//=> 'helo'
Generated using TypeDoc
Removes duplicate characters from a string.