Since we strip characters not being unicode letters, numbers, hyphens or underscores we could potentially have naming collisions for objects. An example of such a collision is: ``` object$1 object-1 ``` where both names will be translated to `object-1` resulting in only the last one being printed.
Since we strip characters not being unicode letters, numbers, hyphens or underscores we could potentially have naming collisions for objects.
An example of such a collision is:
where both names will be translated to
object-1resulting in only the last one being printed.