willtheorangeguy / willtheorangeguy.github.io

arguments.caller or arguments.callee should not be used JS-0053
Performance
Minor
5 months ago2 years old
Avoid arguments.callee
1438      source[property].constructor === Object
1439    ) {
1440      destination[property] = destination[property] || {};
1441      arguments.callee(destination[property], source[property]);1442    } else {
1443      destination[property] = source[property];
1444    }