typeunder
Table of Contents
Function
typeunder — the underlying type of a value
Synopsis
typeunder(val: any) -> type
Description
The typeunder function returns the type of its argument val
. If this type is a
named type, then the referenced type is
returned instead of the named type.
Examples
yield {typeof:typeof(this),typeunder:typeunder(this)}
true
Loading...