* Removes the given set of `ignoredGlobals` from the set of exposed global names. * * @param {string[]} ignoredGlobals Names to ignore (determined from shims in .library)
(ignoredGlobals)
| 208 | * @param {string[]} ignoredGlobals Names to ignore (determined from shims in .library) |
| 209 | */ |
| 210 | removeIgnoredGlobalNames(ignoredGlobals) { |
| 211 | if ( this.exposedGlobals ) { |
| 212 | const remaining = this.exposedGlobals.filter((global) => !ignoredGlobals.includes(global)); |
| 213 | this.exposedGlobals = remaining.length > 0 ? remaining : null; |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | toString() { |
| 218 | return "ModuleInfo(" + |
no outgoing calls
no test coverage detected