File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
packages/optimizely-sdk/lib/utils/fns Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616var uuid = require ( 'uuid' ) ;
17- var _isFinite = require ( 'lodash/isFinite' ) ;
18- var keyBy = require ( '@optimizely/js-sdk-utils' ) . keyBy ;
1917var MAX_NUMBER_LIMIT = Math . pow ( 2 , 53 ) ;
20-
18+ var keyBy = require ( '@optimizely/js-sdk-utils' ) . keyBy ;
2119module . exports = {
2220 assign : function ( target ) {
2321 if ( ! target ) {
@@ -29,7 +27,7 @@ module.exports = {
2927 var to = Object ( target ) ;
3028 for ( var index = 1 ; index < arguments . length ; index ++ ) {
3129 var nextSource = arguments [ index ] ;
32- if ( nextSource !== null && nextSource !== undefined ) {
30+ if ( nextSource !== null && nextSource !== undefined ) {
3331 for ( var nextKey in nextSource ) {
3432 // Avoid bugs when hasOwnProperty is shadowed
3533 if ( Object . prototype . hasOwnProperty . call ( nextSource , nextKey ) ) {
You can’t perform that action at this time.
0 commit comments