UNPKG

soda-angular

Version:
12 lines (11 loc) 250 B
export class WhereValue { constructor(value) { if (value === null) { throw new Error("Value must be provided"); } this.Value = value; } toString() { return `'${this.Value}'`; } }