function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
var arr = [];
|
var each = arr.forEach;
|
var slice = arr.slice;
|
export function defaults(obj) {
|
each.call(slice.call(arguments, 1), function (source) {
|
if (source) {
|
for (var prop in source) {
|
if (obj[prop] === undefined) obj[prop] = source[prop];
|
}
|
}
|
});
|
return obj;
|
}
|
export function hasXMLHttpRequest() {
|
return typeof XMLHttpRequest === 'function' || (typeof XMLHttpRequest === "undefined" ? "undefined" : _typeof(XMLHttpRequest)) === 'object';
|
}
|
|
function isPromise(maybePromise) {
|
return !!maybePromise && typeof maybePromise.then === 'function';
|
}
|
|
export function makePromise(maybePromise) {
|
if (isPromise(maybePromise)) {
|
return maybePromise;
|
}
|
|
return Promise.resolve(maybePromise);
|
}
|