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