Fix wrong Extend target in MergeXHRSettings

This commit is contained in:
samme 2018-02-14 09:52:52 -08:00 committed by GitHub
parent 2892f20e5c
commit 633acec058
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ var XHRSettings = require('./XHRSettings');
*/
var MergeXHRSettings = function (global, local)
{
var output = (global === undefined) ? XHRSettings() : Extend(global);
var output = (global === undefined) ? XHRSettings() : Extend({}, global);
if (local)
{