I'm working with some javascript generators. It has generated a line like:
(0, _myTest.testfunc)();
What is the meaning of this line?
OK - The testfunc is the a function that should be called and comes from a module loader. But what is the meaning of the first () with the comma between?