We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Object.assign is used at the following locations:
sdk-js/packages/upload-core/src/upload.js
Line 95 in c0ab8e9
sdk-js/packages/env-var/src/index.js
Line 58 in c0ab8e9
Line 66 in c0ab8e9
Object.assign is not supported in IE:
Object.assign
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Browser_compatibility
Object.assign is not used
We either polyfill Object.assign or use the spread operator. or perhaps use the extend method from lodash. I'm partial to the spread operator.
extend
lodash
The text was updated successfully, but these errors were encountered:
I vote for using the spread operator too. Looks like it should cover the cases listed.
Sorry, something went wrong.
2a65943
No branches or pull requests
🐛 Bug report
Current Behavior
Object.assign is used at the following locations:
sdk-js/packages/upload-core/src/upload.js
Line 95 in c0ab8e9
sdk-js/packages/env-var/src/index.js
Line 58 in c0ab8e9
sdk-js/packages/env-var/src/index.js
Line 66 in c0ab8e9
Object.assign
is not supported in IE:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Browser_compatibility
Expected behavior
Object.assign is not used
Suggested solution(s)
We either polyfill Object.assign or use the spread operator. or perhaps use the
extend
method fromlodash
. I'm partial to the spread operator.The text was updated successfully, but these errors were encountered: