Remove groupCollapsed from list of unsupported polyfills

Summary:
Changelog: [Internal] Remove groupCollapsed from list of unsupported polyfills

`console.groupCollapsed` was always replaced with `originalConsole`'s implementation, but
the right behavior is to have it be a proxy (call both `console` and `originalConsole`).
So remove this key from a list of unsupported functions.

Reviewed By: yungsters

Differential Revision: D18820158

fbshipit-source-id: d83cffbc7e7939c2654fad2e0d681da7c3b5196a
This commit is contained in:
Riley Dulin 2019-12-06 13:33:38 -08:00 коммит произвёл Facebook Github Bot
Родитель e341489521
Коммит 16e8a35d42
1 изменённых файлов: 1 добавлений и 8 удалений

Просмотреть файл

@ -599,14 +599,7 @@ if (global.nativeLoggingHook) {
// The following methods are not supported by this polyfill but
// we still should pass them to original console if they are
// supported by it.
[
'clear',
'dir',
'dirxml',
'groupCollapsed',
'profile',
'profileEnd',
].forEach(methodName => {
['clear', 'dir', 'dirxml', 'profile', 'profileEnd'].forEach(methodName => {
if (typeof originalConsole[methodName] === 'function') {
console[methodName] = function() {
originalConsole[methodName](...arguments);