Variable() constructor
Last updated
Variable()Creates a new instance of Variable with a specified name and optional value.
constructor(name: Name, value?: Value) {
super(name, '{', '}');
isDefined(value) && (this.#value = value);
}// Example usage.
import { Variable } from '@angular-package/text';
Last updated