Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function is(node: TreeNode): node is MonacoOutlineSymbolInformationNode {
return OutlineSymbolInformationNode.is(node) && 'uri' in node && 'range' in node;
}
export function insert(nodes: MonacoOutlineSymbolInformationNode[], node: MonacoOutlineSymbolInformationNode): void {