Namespaced Javascript functions are easily searchable.

This is one of a number of wonderful things that happen which is what makes using prefixes in front of Javascript functions much better using other techniques like hiding generically named functions inside of object closures.

It makes it super easy to find stuff using a good text editor like Microsoft Visual Code.

i.e. setName is going to be hard to find with a global text search, but UTLsetName will be unique with our conventions.

Â