flowchart TB
    JsValue
    JsValue-->JsObject
    subgraph primitives [Primitive Types]
        JsBoolean
        JsNumber
        JsString
        JsNull
        JsUndefined
    end
    subgraph objects [Standard Object Types]
        JsFunction
        JsArray
        JsDate
        JsError
    end
    subgraph typedarrays [Typed Arrays]
        JsBuffer
        JsArrayBuffer
        JsTypedArray["JsTypedArray<T>"]
    end
    subgraph custom [Custom Types]
        JsBox
    end
    JsValue-->primitives
    JsObject-->objects
    JsObject-->typedarrays
    JsObject-->custom
    
          Last active
          June 25, 2022 15:02 
        
      - 
      
- 
        Save dherman/b5922d0eaaadb0e0ccec8e62a6742ea1 to your computer and use it in GitHub Desktop. 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment