Skip to content

Instantly share code, notes, and snippets.

@dherman
Last active June 25, 2022 15:02
Show Gist options
  • Save dherman/b5922d0eaaadb0e0ccec8e62a6742ea1 to your computer and use it in GitHub Desktop.
Save dherman/b5922d0eaaadb0e0ccec8e62a6742ea1 to your computer and use it in GitHub Desktop.
flowchart TB
    JsValue-->a2
    c1-->a2
    subgraph primitives [Primitive Types]
    JsBoolean
    JsNumber
    JsString
    JsNull
    JsUndefined
    end
    subgraph typedarrays [Typed Arrays]
    b1-->b2
    end
    subgraph three
    c1-->c2
    end
    JsValue-->JsBoolean
    JsValue-->JsNumber
    JsValue-->JsString
    JsValue-->JsNull
    JsValue-->JsUndefined
    primitives --> typedarrays
    three --> typedarrays
    two --> c2
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment