AJStacy/adze

remove lodash cloneDeep in favor of structuredClone

AJStacy opened this issue · 1 comments

Unbeknownst to me a standard function already exists for creating deep clones of objects named structuredClone. Current implementations of the lodash cloneDeep function should be removed in favor of this. This will improve performance and reduce bundle size.

https://developer.mozilla.org/en-US/docs/Web/API/structuredClone

Cannot implement this right now because it is only available in node 17+