Closed vikaspotluri123 closed 5 years ago
@Jgriebel1990 feel free to pick something from the checklist and let us know! I'll probably update the list w/ a more in depth status next week
Hi, What's the status. I would like to contribute too.
Hey @ashish-r , the honest answer is "you would need to check yourself" :smile: Most of the codebase seems to have been updated, but as @kirrg001 pointed out earlier the data/
folder hasn't been touched, also see that parts of models/
are still on older syntax.
I would suggest updating the list on top first, and then approaching it one piece at a time, so it's easy and fast to merge.
Updated list:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Not stale
Always really happy to accept PRs that ES6ify the code at any point, but don't think it needs the issue - file structure changes a lot and I think this possibly makes it seem harder?
This is something ~I plan on working on in the middle of May~ a bunch of people are helping out on! π
var
->let
/const
_.includes(array)
->array.includes
(dropping v4 support at the end of April makes this possible)_.each(array)
-> array.forEach_.isArray(array)
->Array.isArray(array)
- Only if it removes the necessity of requiring lodash in a specific file_.isEmpty(array)
->array.length === 0
(or!array.length
)var self = this
(arrow functions instead)(a = 2, b = 2) => a + b
)Checklist: