Examples
// Example usage.
import { Wrap, Wrapped } from '@angular-package/text';
// Define.
const wrap = new Wrap('{{', '}}');
// Returns Wrapped {'{{variable}}'}
const variable = new Wrapped(`variable`, wrap);
// Returns }}
variable.closing;
// Returns {{
variable.opening;
// Returns variable
variable.unwrap();
// Returns {{variable}}
variable.value;
// Returns {{variable}}
variable.valueOf();
Last updated