method Node.hasNameimport { Node } from "https://dotland.deno.dev/x/fresh@1.7.3/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; }