0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-03 21:09:00 -05:00
penpot/frontend/resources/polyfills/dynamicImport.js

6 lines
108 B
JavaScript
Raw Normal View History

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