Skip to content

Commit

Permalink
fix: remove unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Pader committed Sep 12, 2023
1 parent 83c02f0 commit d9b6e55
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/fastMerge.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ function mergeObject(target, source) {
* @returns {Object|Array}
*/
function fastMerge(target, source) {
// lodash adds a small overhead so we don't use it here
// eslint-disable-next-line rulesdir/prefer-underscore-method
if (_.isArray(source) || _.isNull(source) || _.isUndefined(source)) {
return source;
}
Expand Down

0 comments on commit d9b6e55

Please sign in to comment.