Import function from external script JavaScript
Hi, everyone!
I'm quite new to scripting in Illustrator, so I was wondering whether I could write a file with a few funcitons that I use most often (like utilities in python) and call them from this file into a different script instead of writing them every time. Like that:
```
// internal_file.js
from external_file import Function
```
Unfortunately, I was unable to do it with the standard js methods and I suppose, it's because Illustrator scripting uses a basic version of js that doesn't have all the methods and objects. Has anyone found a way around?
