mirror of
https://github.com/penpot/penpot.git
synced 2026-02-28 23:34:26 +00:00
6 lines
108 B
JavaScript
6 lines
108 B
JavaScript
if (!('dynamicImport' in window)) {
|
|
window.dynamicImport = function(uri) {
|
|
return import(uri);
|
|
}
|
|
};
|