We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2496756 commit c011b36Copy full SHA for c011b36
tests/baselines/reference/objectRest2.js
@@ -20,6 +20,9 @@ var __assign = (this && this.__assign) || Object.assign || function(t) {
20
s = arguments[i];
21
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
22
t[p] = s[p];
23
+ if (typeof Object.getOwnPropertySymbols === "function")
24
+ for (var i = 0, s = Object.getOwnPropertySymbols(s); i < s.length; i++)
25
+ t[i] = s[i];
26
}
27
return t;
28
};
0 commit comments