why is $.support being populated in transit.js
hey guys , good day , have a look at the below function ::
- for (var key in support) {
- if (support.hasOwnProperty(key) && typeof $.support[key] === 'undefined') {
- $.support[key] = support[key];
- }
- }
i see the for in loop being used and the $.support method in jQuery being populated with more properties. WHY ?
I fund the above function
here .