grafana/public/app/plugins/datasource/influxdb/components/VisualInfluxQLEditor/unwrap.ts
Gábor Farkas 3e59ae7e56
InfluxDB: Convert the InfluxQL query editor from Angular to React (#32168)
Co-authored-by: Giordano Ricci <me@giordanoricci.com>
2021-05-11 08:15:44 +02:00

7 lines
155 B
TypeScript

export function unwrap<T>(value: T | null | undefined): T {
if (value == null) {
throw new Error('value must not be nullish');
}
return value;
}