We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Hi, I have this issue only on some old version of iPad. The issue is on line 458:
cnName = constr.toString().match(self.rx_function)[1];
I don't know if it's the best solution, but I solved in that way:
cnName = constr.toString().match(self.rx_function) ? [1] : null;