Subject: | Case mismatch in module name and package name |
Hi
not a real bug, but:
use Data::Javascript::Anon;
Data::Javascript::Anon->anon_dump($struct); ### dies
Data::JavaScript::Anon->anon_dump($struct); ### OK
--------------^
The module name in not camel cased, the package name is. This should be
at least be explicitly mentioned in the docs (in the synopsis), if not better fixed. Due to the optical similarity between upper- and lowercase s, it can take a really long time to get this.
Bodo