method Node.hasNameimport { Node } from "https://deno.land/x/fresh@1.6.1/src/dev/deps.ts"; hasName<T extends Node>(node: T): node is T & { getName(): string; getNameNode(): Node; }Gets if the node has a name. Gets if the node has a name. Type ParametersT extends NodeParametersnode: T Node to check. Returnsnode is T & { getName(): string; getNameNode(): Node; }