I have a package with some handy functions like
function func1() { ... }
function func2() { ... }
Then I try to import them via
import 'packagename'
But in my code below I cannot use func1() and func2() as they are undefined
Is it possible to import non exported js code?