Current section
Files
Jump to
Current section
Files
assets/node_modules/xterm/src/browser/renderer/RendererUtils.ts
/**
* Copyright (c) 2019 The xterm.js authors. All rights reserved.
* @license MIT
*/
export function throwIfFalsy<T>(value: T | undefined | null): T {
if (!value) {
throw new Error('value must not be falsy');
}
return value;
}