SonarJS linter helper functions
    Preparing search index...

    Function isUnresolved

    • Check if an identifier has no known value, meaning:

      • It's not imported/required
      • Defined variable without any write references (function parameter?)
      • Non-defined variable (a possible global?)

      Parameters

      • node: undefined | null | Node

        Node to check

      • ctx: RuleContext

        Rule context

      Returns boolean