Adjust spacing in template string expressions.

This commit is contained in:
John-David Dalton
2017-04-08 22:41:48 -07:00
parent 303502efa7
commit d10b44bdef
29 changed files with 90 additions and 90 deletions

View File

@@ -17,7 +17,7 @@ const hasOwnProperty = Object.prototype.hasOwnProperty
*
* const object = { 'a': 1, 'b': 2, 'c': 1 }
*
* invertBy(object, value => `group${ value }`)
* invertBy(object, value => `group${value}`)
* // => { 'group1': ['a', 'c'], 'group2': ['b'] }
*/
function invertBy(object, iteratee) {