(name)
| 361 | } |
| 362 | |
| 363 | function removeScript(name) { |
| 364 | if (isBrowser) { |
| 365 | each(scripts(), function (scriptNode) { |
| 366 | if (scriptNode.getAttribute('data-requiremodule') === name && |
| 367 | scriptNode.getAttribute('data-requirecontext') === context.contextName) { |
| 368 | scriptNode.parentNode.removeChild(scriptNode); |
| 369 | return true; |
| 370 | } |
| 371 | }); |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | function hasPathFallback(id) { |
| 376 | var pathConfig = getOwn(config.paths, id); |
no test coverage detected
searching dependent graphs…