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

Function isNamedExternalModuleExport

test/fixtures/snapshot/typescript.js:94005–94008  ·  view source on GitHub ↗

* Gets a value indicating whether the node is a named export from an external module. * * @param node The node to test.

(node)

Source from the content-addressed store, hash-verified

94003 * @param node The node to test.
94004 */
94005 function isNamedExternalModuleExport(node) {
94006 return isExternalModuleExport(node)
94007 && !ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */);
94008 }
94009 /**
94010 * Gets a value indicating whether the node is the default export of an external module.
94011 *

Callers 2

getClassFactsFunction · 0.85

Calls 1

isExternalModuleExportFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…