mirror of
https://github.com/penpot/penpot.git
synced 2025-02-13 02:28:18 -05:00
5 lines
108 B
JavaScript
5 lines
108 B
JavaScript
if (!('dynamicImport' in window)) {
|
|
window.dynamicImport = function(uri) {
|
|
return import(uri);
|
|
}
|
|
};
|