MCPcopy Index your code
hub / github.com/DeepNotesApp/DeepNotes / getModuleInfo

Function getModuleInfo

packages/@stdlib/nestjs/src/index.ts:140–150  ·  view source on GitHub ↗
(module: any)

Source from the content-addressed store, hash-verified

138}
139
140export function getModuleInfo(module: any) {
141 let moduleInfo = _moduleInfos.get(module);
142
143 if (moduleInfo == null) {
144 moduleInfo = {};
145
146 _moduleInfos.set(module, moduleInfo);
147 }
148
149 return moduleInfo;
150}
151
152function _generateRoutes(module: any) {
153 const children: Routes = [];

Callers 5

ModuleFunction · 0.85
_getDescendantModulesFunction · 0.85
_generateRoutesFunction · 0.85
getTestModuleBuilderFunction · 0.85

Calls 2

getMethod · 0.65
setMethod · 0.65

Tested by

no test coverage detected