removeWrapIn()
Wrapper.prototype.removeWrapIn()
Wrapper.prototype.removeWrapIn()public removeWrapIn(text: string): string {
return (
(text = this.replaceClosingIn(text, '')),
(text = this.replaceOpeningIn(text, '')),
text
);
}Parameters
text: string
text: stringReturns
Example usage
Last updated