fuxt
fuxt copied to clipboard
Remove lodash _get() functions
trafficstars
Let's replace this sort of code:
const pages = _get(data, "creators.children.nodes", []) || []
With this:
const pages = data?.creators?.children?.nodes || []
Perhaps worth dropping lodash altogether
Make sure we get the linter working with this syntax
Good example here: https://github.com/funkhaus/tool-frontend/blob/master/templates/projects-department.vue#L61-L64
This was done awhile ago