Is there any way to get Underscore.js extend function:
Copy all of the properties in the source objects over to the destination object, and return t
underscore's extend() does not do deep extend; as a matter of fact, there is no function in underscore which can deep extend.
You may use lodash's merge for that.