(variableName, request, runtimeTemplate)
| 703 | * @returns {string} the generated source |
| 704 | */ |
| 705 | const checkExternalVariable = (variableName, request, runtimeTemplate) => |
| 706 | `if(typeof ${variableName} === 'undefined') { ${runtimeTemplate.throwMissingModuleErrorBlock( |
| 707 | { request } |
| 708 | )} }\n`; |
| 709 | |
| 710 | /** |
| 711 | * Gets source for amd or umd external. |
no test coverage detected