dynamicImportPolyfill.js 450 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.dynamicImportPolyfill = void 0;
  4. function dynamicImportPolyfill(promise = false) {
  5. return {
  6. name: 'dynamic-import-polyfill',
  7. renderDynamicImport() {
  8. return {
  9. left: promise ? 'Promise.resolve(' : '(',
  10. right: ')',
  11. };
  12. },
  13. };
  14. }
  15. exports.dynamicImportPolyfill = dynamicImportPolyfill;