File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ const bundleSizeTestCases:ITestCase[] = [
7474 } ,
7575 {
7676 name : 'Import all of the SDK' ,
77- sizeLimitInKB : 117 ,
77+ sizeLimitInKB : 118 ,
7878 importsArray : [
7979 importFromBase ( 'CloudinaryBaseSDK' )
8080 ]
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import {isObject} from "./utils/isObject";
1515 * @param {...Object } source - the source object(s) to assign defaults from
1616 * @return {Object } destination after it was modified
1717 */
18- const defaults = ( destination :{ } , ...sources : object [ ] ) => {
18+ const useDefaultValues = ( destination :{ } , ...sources : object [ ] ) => {
1919 return sources . reduce ( function ( dest , source ) {
2020 let key , value ;
2121 for ( key in source ) {
@@ -42,7 +42,7 @@ class Configuration {
4242 private configuration : any ;
4343 constructor ( options : { } ) {
4444 this . configuration = options == null ? { } : cloneDeep ( options ) ;
45- defaults ( this . configuration , DEFAULT_CONFIGURATION_PARAMS ) ;
45+ useDefaultValues ( this . configuration , DEFAULT_CONFIGURATION_PARAMS ) ;
4646 }
4747
4848 /**
You can’t perform that action at this time.
0 commit comments