unwrapText()
Wrapper.prototype.unwrapText()
Wrapper.prototype.unwrapText()public unwrapText(
opening: string = this.opening,
closing: string = this.closing
): string {
return `${this.opening}${Wrapper.unwrap(this.text, opening, closing)}${
this.closing
}`;
} Parameters
opening: string
opening: stringclosing: string
closing: stringReturns
Example usage
Last updated