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

Function isEmptyArrayLiteralType

test/fixtures/snapshot/typescript.js:67456–67459  ·  view source on GitHub ↗
(type)

Source from the content-addressed store, hash-verified

67454 return strictNullChecks ? type === implicitNeverType : type === undefinedWideningType;
67455 }
67456 function isEmptyArrayLiteralType(type) {
67457 var elementType = getElementTypeOfArrayType(type);
67458 return !!elementType && isEmptyLiteralType(elementType);
67459 }
67460 function isTupleLikeType(type) {
67461 return isTupleType(type) || !!getPropertyOfType(type, "0");
67462 }

Calls 2

isEmptyLiteralTypeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…