MCPcopy Index your code
hub / github.com/nodejs/node / isTypeSubtypeOf

Function isTypeSubtypeOf

test/fixtures/snapshot/typescript.js:63839–63841  ·  view source on GitHub ↗
(source, target)

Source from the content-addressed store, hash-verified

63837 return isTypeRelatedTo(source, target, subtypeRelation) ? -1 /* Ternary.True */ : 0 /* Ternary.False */;
63838 }
63839 function isTypeSubtypeOf(source, target) {
63840 return isTypeRelatedTo(source, target, subtypeRelation);
63841 }
63842 function isTypeAssignableTo(source, target) {
63843 return isTypeRelatedTo(source, target, assignableRelation);
63844 }

Callers 9

getSupertypeOrUnionFunction · 0.85
getCommonSubtypeFunction · 0.85
getInferredTypeFunction · 0.85
isFunctionObjectTypeFunction · 0.85
isConstructedByFunction · 0.85
getNarrowedTypeFunction · 0.85

Calls 1

isTypeRelatedToFunction · 0.85

Tested by

no test coverage detected