Remove semicolons.

This commit is contained in:
John-David Dalton
2017-02-04 23:50:10 -08:00
parent f3a8e55e70
commit 6cb3460fce
452 changed files with 4261 additions and 4261 deletions

View File

@@ -1,4 +1,4 @@
import baseUpdate from './.internal/baseUpdate.js';
import baseUpdate from './.internal/baseUpdate.js'
/**
* This method is like `update` except that it accepts `customizer` which is
@@ -17,14 +17,14 @@ import baseUpdate from './.internal/baseUpdate.js';
* @returns {Object} Returns `object`.
* @example
*
* const object = {};
* const object = {}
*
* updateWith(object, '[0][1]', constant('a'), Object);
* updateWith(object, '[0][1]', constant('a'), Object)
* // => { '0': { '1': 'a' } }
*/
function updateWith(object, path, updater, customizer) {
customizer = typeof customizer == 'function' ? customizer : undefined;
return object == null ? object : baseUpdate(object, path, updater, customizer);
customizer = typeof customizer == 'function' ? customizer : undefined
return object == null ? object : baseUpdate(object, path, updater, customizer)
}
export default updateWith;
export default updateWith