Closed manthey closed 1 week ago
Pure javascript is faster.
jquery.extend has shallow and deep versions. All shallow versions were replaced with Object.assign. All deep versions use a new method called deepMerge with seems to run in about 40% of the time the jquery deep extend runs.
deepMerge
Confirmed by external source.
:tada: This PR is included in version 1.12.6 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
Pure javascript is faster.
jquery.extend has shallow and deep versions. All shallow versions were replaced with Object.assign. All deep versions use a new method called
deepMerge
with seems to run in about 40% of the time the jquery deep extend runs.