Function dehoistStart

  • Removes all hoisting characters from the start string.

    Example

    const str = "!!fo;o";
    const newStr = dehoistStart(str);
    console.log(newStr); // "fo;o"

    Parameters

    • str: string

      The string to dehoist the start of.

    Returns string

Generated using TypeDoc