Function isDotToken

  • Test if a node is a DotToken.

    Parameters

    • node: Node

    Returns node is DotToken

    Whether the given node appears to be a DotToken.

    Example

    declare const node: ts.Node;

    if (isDotToken(node)) {
    // ...
    }