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,6 +1,6 @@
import apply from './.internal/apply.js';
import customDefaultsMerge from './.internal/customDefaultsMerge.js';
import mergeWith from './mergeWith.js';
import apply from './.internal/apply.js'
import customDefaultsMerge from './.internal/customDefaultsMerge.js'
import mergeWith from './mergeWith.js'
/**
* This method is like `defaults` except that it recursively assigns
@@ -16,12 +16,12 @@ import mergeWith from './mergeWith.js';
* @see defaults
* @example
*
* defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } });
* defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } })
* // => { 'a': { 'b': 2, 'c': 3 } }
*/
function defaultsDeep(...args) {
args.push(undefined, customDefaultsMerge);
return apply(mergeWith, undefined, args);
args.push(undefined, customDefaultsMerge)
return apply(mergeWith, undefined, args)
}
export default defaultsDeep;
export default defaultsDeep