narrow down the type of a generic ClarityValue
// some functions can return a generic `ClarityValue` typelet value = callReadOnlyFunction();// ^ ClarityValue// use `isClarityType` to narrow down the typeassert(isClarityType(value, ClarityType.Int))console.log(value)// ^ IntCV Copy
// some functions can return a generic `ClarityValue` typelet value = callReadOnlyFunction();// ^ ClarityValue// use `isClarityType` to narrow down the typeassert(isClarityType(value, ClarityType.Int))console.log(value)// ^ IntCV
Generated using TypeDoc
Description
narrow down the type of a generic ClarityValue
Example