unwrapText()
Last updated
// Example usage.
import { Wrapper } from '@angular-package/wrapper';
const longText = new Wrapper('{', '}', '{This is a long text}');
// Returns {This is a long text}.
longText.unwrapText();
// Returns {{This is a long text}}.
longText.unwrapText('', '');
// Returns {This is a long text}}.
longText.unwrapText('{', '');
// Returns {{This is a long text}.
longText.unwrapText('', '}');
// Returns {{This is a long text}}.
longText.unwrapText('{{', '}}');