jeremycx / node-LDAP

LDAP binding for node.js
MIT License
221 stars 43 forks source link

Removing Dependence on lodash #116

Closed ghost closed 5 years ago

ghost commented 5 years ago

The following change removes the project dependency lodash. Previously, just the assign() function from lodash was used in a single place to apply the user's supplied options to the options object used internally by the LDAP class. This has been replaced by a new function extendobj() which is not equivalent to assign(), but accomplishes the same goal.

Closes #114