0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 15:39:50 -05:00
penpot/frontend/resources/polyfills/dynamicImport.js
2024-09-17 14:52:27 +02:00

5 lines
108 B
JavaScript

if (!('dynamicImport' in window)) {
window.dynamicImport = function(uri) {
return import(uri);
}
};