Long time I am trying to understand the logic behind the Google's javascript codes. Each method in the script: http://pastebin.com/10DvhDYM get a non-logical name.
For example:
function ha(a, b) {
return a.name = b
}
function Ca(a) {
return void 0 != a && -1 < (a.constructor + "")[q]("String")
}
function F(a, b) {
return void 0 == a || "-" == a && !b || "" == a
}
Why they didn't using more logical and meaningful names for the methods and the vars ?
Most of the people that i asked, think that the names came from special IDE that built for Google developers teams, it's help them to work in team and more ability to understand quickly each function - is that true?