From c8ebd5dd817207893ab9075888c37e323e3946bc Mon Sep 17 00:00:00 2001 From: Chris Malley Date: Mon, 18 Mar 2019 11:32:31 -0600 Subject: [PATCH] break lines longer than 120 --- js/merge.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/merge.js b/js/merge.js index 3460b7b..8594a70 100644 --- a/js/merge.js +++ b/js/merge.js @@ -1,9 +1,9 @@ // Copyright 2019, University of Colorado Boulder /** - * Like LoDash's _.merge, this will recursively merge nested options objects provided that the keys end in 'Options' (case sensitive) - * and they are pure objects. That is, they must be defined by `... = { ... }` or `someProp: { ... }`; arrays, functions, and inherited - * types will all throw assertion errors. + * Like LoDash's _.merge, this will recursively merge nested options objects provided that the keys end in 'Options' + * (case sensitive) and they are pure objects. That is, they must be defined by `... = { ... }` or `someProp: { ... }`; + * arrays, functions, and inherited types will all throw assertion errors. * @param {Object} target * @param {Object} ...sources * @returns {Object}