@eagleoutice/flowr - v2.15.8
    Preparing search index...

    An object-oriented read-only view on an Identifier.

    The view holds a reference to the identifier it was created from and copies nothing, so it costs one small object and every accessor is a plain read. Serializing it yields the identifier again, so a view may be handed to JSON.stringify in its place.

    The bare Identifier remains the representation that is stored and sent over the wire; create a view where you read one and drop it afterwards rather than keeping one per binding.

    const id = Identifier.view(Dataflow.qualify(callId, graph));
    console.log(id?.name, id?.namespace, id?.toString());
    Index

    The underlying identifier; use it whenever you need the plain representation back.

    • get isInternal(): boolean | undefined

      whether the identifier reaches for an internal object (:::), undefined if it says nothing about it

      Returns boolean | undefined