static unwrap()
Wrapper.unwrap()
Wrapper.unwrap()public static unwrap(text: string, opening = '', closing = ''): string {
return (
(text = this.replaceClosing(text, closing, '')),
(text = this.replaceOpening(text, opening, '')),
text
);
}Parameters
text: string
text: stringopening: string
opening: stringclosing: string
closing: stringReturns
Example usage
Last updated