-
-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
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
refactor: use an object spread instead of Object.assign
in filters
#1276
Conversation
used object spread instead of object assign
|
Object.assign
eg: { ...foo }
.Object.assign
eg: { ...foo }
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Object.assign
eg: { ...foo }
.Object.assign
in filters
@Gmin2 thanks for helping with review |
tests are failing, linter - to be more precise |
Linting tests were failing due to indentation issue fixed it
sorry |
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
/rtm |
Description
refactored apps/nunjucks-filters/src/index.js mentioned in this issue
Changes Made
Removed object assign and used object spread
related #1272