textReplaceClosing()
Wrapper.prototype.textReplaceClosing()
Replaces the closing chars of the Wrapper object in the text of the Wrapper object with the given closing chars.
public textReplaceClosing(closing: string): string {
return Wrapper.replaceClosing(this.text, this.closing, closing);
}Parameters
closing: string
The closing chars of string to replace in the text(part of the primitive value).
Returns
The return value is the text of string type with replaced closing chars.
Example usage
// Example usage.
import { Wrapper } from '@angular-package/wrapper';
const longText = new Wrapper('{', '}', '{This is a long text}');
// Returns {{This is a long text}}.
longText.valueOf();
// Returns {This is a long text.
longText.textReplaceClosing('');
// Returns {This is a long text}}.
longText.textReplaceClosing('}}');Last updated