Removes all hoisting characters from a string.
const str = "!!fo;o";const newStr = dehoist(str);console.log(newStr); // "foo"
The string to dehoist.
Generated using TypeDoc
Removes all hoisting characters from a string.
Example