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

Function isDefaultExternalModuleExport

test/fixtures/snapshot/typescript.js:94014–94017  ·  view source on GitHub ↗

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

(node)

Source from the content-addressed store, hash-verified

94012 * @param node The node to test.
94013 */
94014 function isDefaultExternalModuleExport(node) {
94015 return isExternalModuleExport(node)
94016 && ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */);
94017 }
94018 /**
94019 * Creates a statement for the provided expression. This is used in calls to `map`.
94020 */

Callers 1

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…