Socket
Socket
Sign inDemoInstall

@sentry/integrations

Package Overview
Dependencies
Maintainers
13
Versions
385
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/integrations - npm Package Compare versions

Comparing version 5.13.2 to 5.14.0

46

build/angular.js

@@ -97,2 +97,11 @@ (function (__window) {

/**
* Requires a module which is protected _against bundler minification.
*
* @param request The module path to resolve
*/
function dynamicRequire(mod, request) {
// tslint:disable-next-line: no-unsafe-any
return mod.require(request);
}
/**
* Checks whether we're in the Node.js or Browser environment

@@ -145,2 +154,39 @@ *

}
var INITIAL_TIME = Date.now();
var prevNow = 0;
var performanceFallback = {
now: function () {
var now = Date.now() - INITIAL_TIME;
if (now < prevNow) {
now = prevNow;
}
prevNow = now;
return now;
},
timeOrigin: INITIAL_TIME,
};
var crossPlatformPerformance = (function () {
if (isNodeEnv()) {
try {
var perfHooks = dynamicRequire(module, 'perf_hooks');
return perfHooks.performance;
}
catch (_) {
return performanceFallback;
}
}
if (getGlobalObject().performance) {
// Polyfill for performance.timeOrigin.
//
// While performance.timing.navigationStart is deprecated in favor of performance.timeOrigin, performance.timeOrigin
// is not as widely supported. Namely, performance.timeOrigin is undefined in Safari as of writing.
// tslint:disable-next-line:strict-type-predicates
if (performance.timeOrigin === undefined) {
// @ts-ignore
// tslint:disable-next-line:deprecation
performance.timeOrigin = performance.timing.navigationStart;
}
}
return getGlobalObject().performance || performanceFallback;
})();

@@ -147,0 +193,0 @@ // TODO: Implement different loggers for different environments

2

build/angular.min.js

@@ -1,2 +0,2 @@

!function(n){var t={};Object.defineProperty(t,"__esModule",{value:!0});var e=function(n,t){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,t){n.__proto__=t}||function(n,t){for(var e in t)t.hasOwnProperty(e)&&(n[e]=t[e])})(n,t)};var r=function(){return(r=Object.assign||function(n){for(var t,e=1,r=arguments.length;e<r;e++)for(var o in t=arguments[e])Object.prototype.hasOwnProperty.call(t,o)&&(n[o]=t[o]);return n}).apply(this,arguments)},o=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(n,t){return n.__proto__=t,n}:function(n,t){for(var e in t)n.hasOwnProperty(e)||(n[e]=t[e]);return n});!function(n){function t(t){var e=this.constructor,r=n.call(this,t)||this;return r.message=t,r.name=e.prototype.constructor.name,o(r,e.prototype),r}(function(n,t){function r(){this.constructor=n}e(n,t),n.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)})(t,n)}(Error);var a={};function i(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:a}function c(n){var t=i();if(!("console"in t))return n();var e=t.console,r={};["debug","info","warn","error","log","assert"].forEach(function(n){n in t.console&&e[n].__sentry_original__&&(r[n]=e[n],e[n]=e[n].__sentry_original__)});var o=n();return Object.keys(r).forEach(function(n){e[n]=r[n]}),o}var u=i(),s="Sentry Logger ",l=function(){function n(){this._enabled=!1}return n.prototype.disable=function(){this._enabled=!1},n.prototype.enable=function(){this._enabled=!0},n.prototype.log=function(){for(var n=[],t=0;t<arguments.length;t++)n[t]=arguments[t];this._enabled&&c(function(){u.console.log(s+"[Log]: "+n.join(" "))})},n.prototype.warn=function(){for(var n=[],t=0;t<arguments.length;t++)n[t]=arguments[t];this._enabled&&c(function(){u.console.warn(s+"[Warn]: "+n.join(" "))})},n.prototype.error=function(){for(var n=[],t=0;t<arguments.length;t++)n[t]=arguments[t];this._enabled&&c(function(){u.console.error(s+"[Error]: "+n.join(" "))})},n}();u.__SENTRY__=u.__SENTRY__||{};var f,p=u.__SENTRY__.logger||(u.__SENTRY__.logger=new l);!function(n){n.PENDING="PENDING",n.RESOLVED="RESOLVED",n.REJECTED="REJECTED"}(f||(f={}));i();var _=/^\[((?:[$a-zA-Z0-9]+:)?(?:[$a-zA-Z0-9]+))\] (.*?)\n?(\S+)$/,g=function(){function n(t){void 0===t&&(t={}),this.name=n.id,this._angular=t.angular||i().angular}return n.prototype.setupOnce=function(t,e){var r=this;this._angular?(this._getCurrentHub=e,this._angular.module(n.moduleName,[]).config(["$provide",function(n){n.decorator("$exceptionHandler",["$delegate",r._$exceptionHandlerDecorator.bind(r)])}])):p.error("AngularIntegration is missing an Angular instance")},n.prototype._$exceptionHandlerDecorator=function(t){var e=this;return function(o,a){var i=e._getCurrentHub&&e._getCurrentHub();i&&i.getIntegration(n)&&i.withScope(function(n){a&&n.setExtra("cause",a),n.addEventProcessor(function(n){var t=n.exception&&n.exception.values&&n.exception.values[0];if(t){var e=_.exec(t.value||"");e&&(t.type=e[1],t.value=e[2],n.message=t.type+": "+t.value,n.extra=r({},n.extra,{angularDocs:e[3].substr(0,250)}))}return n}),i.captureException(o)}),t(o,a)}},n.id="AngularJS",n.moduleName="ngSentry",n}();for(var y in t.Angular=g,n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},t)Object.prototype.hasOwnProperty.call(t,y)&&(n.Sentry.Integrations[y]=t[y])}(window);
!function(n){var r={};Object.defineProperty(r,"__esModule",{value:!0});var e=function(n,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var e in r)r.hasOwnProperty(e)&&(n[e]=r[e])})(n,r)};var t=function(){return(t=Object.assign||function(n){for(var r,e=1,t=arguments.length;e<t;e++)for(var o in r=arguments[e])Object.prototype.hasOwnProperty.call(r,o)&&(n[o]=r[o]);return n}).apply(this,arguments)},o=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(n,r){return n.__proto__=r,n}:function(n,r){for(var e in r)n.hasOwnProperty(e)||(n[e]=r[e]);return n});!function(n){function r(r){var e=this.constructor,t=n.call(this,r)||this;return t.message=r,t.name=e.prototype.constructor.name,o(t,e.prototype),t}(function(n,r){function t(){this.constructor=n}e(n,r),n.prototype=null===r?Object.create(r):(t.prototype=r.prototype,new t)})(r,n)}(Error);function i(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)}var a={};function c(){return i()?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:a}function u(n){var r=c();if(!("console"in r))return n();var e=r.console,t={};["debug","info","warn","error","log","assert"].forEach(function(n){n in r.console&&e[n].__sentry_original__&&(t[n]=e[n],e[n]=e[n].__sentry_original__)});var o=n();return Object.keys(t).forEach(function(n){e[n]=t[n]}),o}var s=Date.now(),f=0,p={now:function(){var n=Date.now()-s;return n<f&&(n=f),f=n,n},timeOrigin:s},l=(function(){if(i())try{return(n=module,r="perf_hooks",n.require(r)).performance}catch(n){return p}var n,r;c().performance&&void 0===performance.timeOrigin&&(performance.timeOrigin=performance.timing.navigationStart),c().performance}(),c()),_="Sentry Logger ",g=function(){function n(){this._enabled=!1}return n.prototype.disable=function(){this._enabled=!1},n.prototype.enable=function(){this._enabled=!0},n.prototype.log=function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];this._enabled&&u(function(){l.console.log(_+"[Log]: "+n.join(" "))})},n.prototype.warn=function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];this._enabled&&u(function(){l.console.warn(_+"[Warn]: "+n.join(" "))})},n.prototype.error=function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];this._enabled&&u(function(){l.console.error(_+"[Error]: "+n.join(" "))})},n}();l.__SENTRY__=l.__SENTRY__||{};var y,v=l.__SENTRY__.logger||(l.__SENTRY__.logger=new g);!function(n){n.PENDING="PENDING",n.RESOLVED="RESOLVED",n.REJECTED="REJECTED"}(y||(y={}));c();var d=/^\[((?:[$a-zA-Z0-9]+:)?(?:[$a-zA-Z0-9]+))\] (.*?)\n?(\S+)$/,h=function(){function n(r){void 0===r&&(r={}),this.name=n.id,this._angular=r.angular||c().angular}return n.prototype.setupOnce=function(r,e){var t=this;this._angular?(this._getCurrentHub=e,this._angular.module(n.moduleName,[]).config(["$provide",function(n){n.decorator("$exceptionHandler",["$delegate",t._$exceptionHandlerDecorator.bind(t)])}])):v.error("AngularIntegration is missing an Angular instance")},n.prototype._$exceptionHandlerDecorator=function(r){var e=this;return function(o,i){var a=e._getCurrentHub&&e._getCurrentHub();a&&a.getIntegration(n)&&a.withScope(function(n){i&&n.setExtra("cause",i),n.addEventProcessor(function(n){var r=n.exception&&n.exception.values&&n.exception.values[0];if(r){var e=d.exec(r.value||"");e&&(r.type=e[1],r.value=e[2],n.message=r.type+": "+r.value,n.extra=t({},n.extra,{angularDocs:e[3].substr(0,250)}))}return n}),a.captureException(o)}),r(o,i)}},n.id="AngularJS",n.moduleName="ngSentry",n}();for(var b in r.Angular=h,n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},r)Object.prototype.hasOwnProperty.call(r,b)&&(n.Sentry.Integrations[b]=r[b])}(window);
//# sourceMappingURL=angular.min.js.map

@@ -302,2 +302,11 @@ (function (__window) {

/**
* Requires a module which is protected _against bundler minification.
*
* @param request The module path to resolve
*/
function dynamicRequire(mod, request) {
// tslint:disable-next-line: no-unsafe-any
return mod.require(request);
}
/**
* Checks whether we're in the Node.js or Browser environment

@@ -350,2 +359,39 @@ *

}
var INITIAL_TIME = Date.now();
var prevNow = 0;
var performanceFallback = {
now: function () {
var now = Date.now() - INITIAL_TIME;
if (now < prevNow) {
now = prevNow;
}
prevNow = now;
return now;
},
timeOrigin: INITIAL_TIME,
};
var crossPlatformPerformance = (function () {
if (isNodeEnv()) {
try {
var perfHooks = dynamicRequire(module, 'perf_hooks');
return perfHooks.performance;
}
catch (_) {
return performanceFallback;
}
}
if (getGlobalObject().performance) {
// Polyfill for performance.timeOrigin.
//
// While performance.timing.navigationStart is deprecated in favor of performance.timeOrigin, performance.timeOrigin
// is not as widely supported. Namely, performance.timeOrigin is undefined in Safari as of writing.
// tslint:disable-next-line:strict-type-predicates
if (performance.timeOrigin === undefined) {
// @ts-ignore
// tslint:disable-next-line:deprecation
performance.timeOrigin = performance.timing.navigationStart;
}
}
return getGlobalObject().performance || performanceFallback;
})();

@@ -352,0 +398,0 @@ // TODO: Implement different loggers for different environments

@@ -1,2 +0,2 @@

!function(e){var n,r,t,o,i={};Object.defineProperty(i,"__esModule",{value:!0}),function(e){e[e.None=0]="None",e[e.Error=1]="Error",e[e.Debug=2]="Debug",e[e.Verbose=3]="Verbose"}(n||(n={})),function(e){e.Fatal="fatal",e.Error="error",e.Warning="warning",e.Log="log",e.Info="info",e.Debug="debug",e.Critical="critical"}(r||(r={})),function(e){e.fromString=function(n){switch(n){case"debug":return e.Debug;case"info":return e.Info;case"warn":case"warning":return e.Warning;case"error":return e.Error;case"fatal":return e.Fatal;case"critical":return e.Critical;case"log":default:return e.Log}}}(r||(r={})),function(e){e.Ok="ok",e.DeadlineExceeded="deadline_exceeded",e.Unauthenticated="unauthenticated",e.PermissionDenied="permission_denied",e.NotFound="not_found",e.ResourceExhausted="resource_exhausted",e.InvalidArgument="invalid_argument",e.Unimplemented="unimplemented",e.Unavailable="unavailable",e.InternalError="internal_error",e.UnknownError="unknown_error",e.Cancelled="cancelled",e.AlreadyExists="already_exists",e.FailedPrecondition="failed_precondition",e.Aborted="aborted",e.OutOfRange="out_of_range",e.DataLoss="data_loss"}(t||(t={})),function(e){e.fromHttpCode=function(n){if(n<400)return e.Ok;if(n>=400&&n<500)switch(n){case 401:return e.Unauthenticated;case 403:return e.PermissionDenied;case 404:return e.NotFound;case 409:return e.AlreadyExists;case 413:return e.FailedPrecondition;case 429:return e.ResourceExhausted;default:return e.InvalidArgument}if(n>=500&&n<600)switch(n){case 501:return e.Unimplemented;case 503:return e.Unavailable;case 504:return e.DeadlineExceeded;default:return e.InternalError}return e.UnknownError}}(t||(t={})),function(e){e.Unknown="unknown",e.Skipped="skipped",e.Success="success",e.RateLimit="rate_limit",e.Invalid="invalid",e.Failed="failed"}(o||(o={})),function(e){e.fromHttpCode=function(n){return n>=200&&n<300?e.Success:429===n?e.RateLimit:n>=400&&n<500?e.Invalid:n>=500?e.Failed:e.Unknown}}(o||(o={}));var a=function(e,n){return(a=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,n){e.__proto__=n}||function(e,n){for(var r in n)n.hasOwnProperty(r)&&(e[r]=n[r])})(e,n)};var c=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(e,n){return e.__proto__=n,e}:function(e,n){for(var r in n)e.hasOwnProperty(r)||(e[r]=n[r]);return e});!function(e){function n(n){var r=this.constructor,t=e.call(this,n)||this;return t.message=n,t.name=r.prototype.constructor.name,c(t,r.prototype),t}(function(e,n){function r(){this.constructor=e}a(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)})(n,e)}(Error);function s(e,n){if(!Array.isArray(e))return"";for(var r=[],t=0;t<e.length;t++){var o=e[t];try{r.push(String(o))}catch(e){r.push("[value cannot be serialized]")}}return r.join(n)}var u={};function l(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:u}function f(e){var n=l();if(!("console"in n))return e();var r=n.console,t={};["debug","info","warn","error","log","assert"].forEach(function(e){e in n.console&&r[e].__sentry_original__&&(t[e]=r[e],r[e]=r[e].__sentry_original__)});var o=e();return Object.keys(t).forEach(function(e){r[e]=t[e]}),o}var d=l(),p="Sentry Logger ",_=function(){function e(){this._enabled=!1}return e.prototype.disable=function(){this._enabled=!1},e.prototype.enable=function(){this._enabled=!0},e.prototype.log=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];this._enabled&&f(function(){d.console.log(p+"[Log]: "+e.join(" "))})},e.prototype.warn=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];this._enabled&&f(function(){d.console.warn(p+"[Warn]: "+e.join(" "))})},e.prototype.error=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];this._enabled&&f(function(){d.console.error(p+"[Error]: "+e.join(" "))})},e}();d.__SENTRY__=d.__SENTRY__||{};var g;d.__SENTRY__.logger||(d.__SENTRY__.logger=new _);!function(e){e.PENDING="PENDING",e.RESOLVED="RESOLVED",e.REJECTED="REJECTED"}(g||(g={}));l();var y=l(),v=function(){function e(n){void 0===n&&(n={}),this.name=e.id,this._levels=["log","info","warn","error","debug","assert"],n.levels&&(this._levels=n.levels)}return e.prototype.setupOnce=function(n,t){"console"in y&&this._levels.forEach(function(n){n in y.console&&function(e,n,r){if(n in e){var t=e[n],o=r(t);if("function"==typeof o)try{o.prototype=o.prototype||{},Object.defineProperties(o,{__sentry_original__:{enumerable:!1,value:t}})}catch(e){}e[n]=o}}(y.console,n,function(o){return function(){for(var i=[],a=0;a<arguments.length;a++)i[a]=arguments[a];var c=t();c.getIntegration(e)&&c.withScope(function(e){e.setLevel(r.fromString(n)),e.setExtra("arguments",i),e.addEventProcessor(function(e){return e.logger="console",e});var t=s(i," ");"assert"===n?!1===i[0]&&(t="Assertion failed: "+(s(i.slice(1)," ")||"console.assert"),e.setExtra("arguments",i.slice(1)),c.captureMessage(t)):c.captureMessage(t)}),o&&Function.prototype.apply.call(o,y.console,i)}})})},e.id="CaptureConsole",e}();for(var h in i.CaptureConsole=v,e.Sentry=e.Sentry||{},e.Sentry.Integrations=e.Sentry.Integrations||{},i)Object.prototype.hasOwnProperty.call(i,h)&&(e.Sentry.Integrations[h]=i[h])}(window);
!function(e){var n,r,t,o,i={};Object.defineProperty(i,"__esModule",{value:!0}),function(e){e[e.None=0]="None",e[e.Error=1]="Error",e[e.Debug=2]="Debug",e[e.Verbose=3]="Verbose"}(n||(n={})),function(e){e.Fatal="fatal",e.Error="error",e.Warning="warning",e.Log="log",e.Info="info",e.Debug="debug",e.Critical="critical"}(r||(r={})),function(e){e.fromString=function(n){switch(n){case"debug":return e.Debug;case"info":return e.Info;case"warn":case"warning":return e.Warning;case"error":return e.Error;case"fatal":return e.Fatal;case"critical":return e.Critical;case"log":default:return e.Log}}}(r||(r={})),function(e){e.Ok="ok",e.DeadlineExceeded="deadline_exceeded",e.Unauthenticated="unauthenticated",e.PermissionDenied="permission_denied",e.NotFound="not_found",e.ResourceExhausted="resource_exhausted",e.InvalidArgument="invalid_argument",e.Unimplemented="unimplemented",e.Unavailable="unavailable",e.InternalError="internal_error",e.UnknownError="unknown_error",e.Cancelled="cancelled",e.AlreadyExists="already_exists",e.FailedPrecondition="failed_precondition",e.Aborted="aborted",e.OutOfRange="out_of_range",e.DataLoss="data_loss"}(t||(t={})),function(e){e.fromHttpCode=function(n){if(n<400)return e.Ok;if(n>=400&&n<500)switch(n){case 401:return e.Unauthenticated;case 403:return e.PermissionDenied;case 404:return e.NotFound;case 409:return e.AlreadyExists;case 413:return e.FailedPrecondition;case 429:return e.ResourceExhausted;default:return e.InvalidArgument}if(n>=500&&n<600)switch(n){case 501:return e.Unimplemented;case 503:return e.Unavailable;case 504:return e.DeadlineExceeded;default:return e.InternalError}return e.UnknownError}}(t||(t={})),function(e){e.Unknown="unknown",e.Skipped="skipped",e.Success="success",e.RateLimit="rate_limit",e.Invalid="invalid",e.Failed="failed"}(o||(o={})),function(e){e.fromHttpCode=function(n){return n>=200&&n<300?e.Success:429===n?e.RateLimit:n>=400&&n<500?e.Invalid:n>=500?e.Failed:e.Unknown}}(o||(o={}));var a=function(e,n){return(a=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,n){e.__proto__=n}||function(e,n){for(var r in n)n.hasOwnProperty(r)&&(e[r]=n[r])})(e,n)};var c=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(e,n){return e.__proto__=n,e}:function(e,n){for(var r in n)e.hasOwnProperty(r)||(e[r]=n[r]);return e});!function(e){function n(n){var r=this.constructor,t=e.call(this,n)||this;return t.message=n,t.name=r.prototype.constructor.name,c(t,r.prototype),t}(function(e,n){function r(){this.constructor=e}a(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)})(n,e)}(Error);function u(e,n){if(!Array.isArray(e))return"";for(var r=[],t=0;t<e.length;t++){var o=e[t];try{r.push(String(o))}catch(e){r.push("[value cannot be serialized]")}}return r.join(n)}function s(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)}var l={};function f(){return s()?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:l}function d(e){var n=f();if(!("console"in n))return e();var r=n.console,t={};["debug","info","warn","error","log","assert"].forEach(function(e){e in n.console&&r[e].__sentry_original__&&(t[e]=r[e],r[e]=r[e].__sentry_original__)});var o=e();return Object.keys(t).forEach(function(e){r[e]=t[e]}),o}var p=Date.now(),_=0,g={now:function(){var e=Date.now()-p;return e<_&&(e=_),_=e,e},timeOrigin:p},v=(function(){if(s())try{return(e=module,n="perf_hooks",e.require(n)).performance}catch(e){return g}var e,n;f().performance&&void 0===performance.timeOrigin&&(performance.timeOrigin=performance.timing.navigationStart),f().performance}(),f()),y="Sentry Logger ",h=function(){function e(){this._enabled=!1}return e.prototype.disable=function(){this._enabled=!1},e.prototype.enable=function(){this._enabled=!0},e.prototype.log=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];this._enabled&&d(function(){v.console.log(y+"[Log]: "+e.join(" "))})},e.prototype.warn=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];this._enabled&&d(function(){v.console.warn(y+"[Warn]: "+e.join(" "))})},e.prototype.error=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];this._enabled&&d(function(){v.console.error(y+"[Error]: "+e.join(" "))})},e}();v.__SENTRY__=v.__SENTRY__||{};var E;v.__SENTRY__.logger||(v.__SENTRY__.logger=new h);!function(e){e.PENDING="PENDING",e.RESOLVED="RESOLVED",e.REJECTED="REJECTED"}(E||(E={}));f();var m=f(),b=function(){function e(n){void 0===n&&(n={}),this.name=e.id,this._levels=["log","info","warn","error","debug","assert"],n.levels&&(this._levels=n.levels)}return e.prototype.setupOnce=function(n,t){"console"in m&&this._levels.forEach(function(n){n in m.console&&function(e,n,r){if(n in e){var t=e[n],o=r(t);if("function"==typeof o)try{o.prototype=o.prototype||{},Object.defineProperties(o,{__sentry_original__:{enumerable:!1,value:t}})}catch(e){}e[n]=o}}(m.console,n,function(o){return function(){for(var i=[],a=0;a<arguments.length;a++)i[a]=arguments[a];var c=t();c.getIntegration(e)&&c.withScope(function(e){e.setLevel(r.fromString(n)),e.setExtra("arguments",i),e.addEventProcessor(function(e){return e.logger="console",e});var t=u(i," ");"assert"===n?!1===i[0]&&(t="Assertion failed: "+(u(i.slice(1)," ")||"console.assert"),e.setExtra("arguments",i.slice(1)),c.captureMessage(t)):c.captureMessage(t)}),o&&Function.prototype.apply.call(o,m.console,i)}})})},e.id="CaptureConsole",e}();for(var w in i.CaptureConsole=b,e.Sentry=e.Sentry||{},e.Sentry.Integrations=e.Sentry.Integrations||{},i)Object.prototype.hasOwnProperty.call(i,w)&&(e.Sentry.Integrations[w]=i[w])}(window);
//# sourceMappingURL=captureconsole.min.js.map

@@ -97,2 +97,11 @@ (function (__window) {

/**
* Requires a module which is protected _against bundler minification.
*
* @param request The module path to resolve
*/
function dynamicRequire(mod, request) {
// tslint:disable-next-line: no-unsafe-any
return mod.require(request);
}
/**
* Checks whether we're in the Node.js or Browser environment

@@ -145,2 +154,39 @@ *

}
var INITIAL_TIME = Date.now();
var prevNow = 0;
var performanceFallback = {
now: function () {
var now = Date.now() - INITIAL_TIME;
if (now < prevNow) {
now = prevNow;
}
prevNow = now;
return now;
},
timeOrigin: INITIAL_TIME,
};
var crossPlatformPerformance = (function () {
if (isNodeEnv()) {
try {
var perfHooks = dynamicRequire(module, 'perf_hooks');
return perfHooks.performance;
}
catch (_) {
return performanceFallback;
}
}
if (getGlobalObject().performance) {
// Polyfill for performance.timeOrigin.
//
// While performance.timing.navigationStart is deprecated in favor of performance.timeOrigin, performance.timeOrigin
// is not as widely supported. Namely, performance.timeOrigin is undefined in Safari as of writing.
// tslint:disable-next-line:strict-type-predicates
if (performance.timeOrigin === undefined) {
// @ts-ignore
// tslint:disable-next-line:deprecation
performance.timeOrigin = performance.timing.navigationStart;
}
}
return getGlobalObject().performance || performanceFallback;
})();

@@ -147,0 +193,0 @@ // TODO: Implement different loggers for different environments

@@ -1,2 +0,2 @@

!function(n){var o={};Object.defineProperty(o,"__esModule",{value:!0});var t=function(n,o){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,o){n.__proto__=o}||function(n,o){for(var t in o)o.hasOwnProperty(t)&&(n[t]=o[t])})(n,o)};var r=function(){return(r=Object.assign||function(n){for(var o,t=1,r=arguments.length;t<r;t++)for(var e in o=arguments[t])Object.prototype.hasOwnProperty.call(o,e)&&(n[e]=o[e]);return n}).apply(this,arguments)},e=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(n,o){return n.__proto__=o,n}:function(n,o){for(var t in o)n.hasOwnProperty(t)||(n[t]=o[t]);return n});!function(n){function o(o){var t=this.constructor,r=n.call(this,o)||this;return r.message=o,r.name=t.prototype.constructor.name,e(r,t.prototype),r}(function(n,o){function r(){this.constructor=n}t(n,o),n.prototype=null===o?Object.create(o):(r.prototype=o.prototype,new r)})(o,n)}(Error);var i={};function c(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:i}function s(n){var o=c();if(!("console"in o))return n();var t=o.console,r={};["debug","info","warn","error","log","assert"].forEach(function(n){n in o.console&&t[n].__sentry_original__&&(r[n]=t[n],t[n]=t[n].__sentry_original__)});var e=n();return Object.keys(r).forEach(function(n){t[n]=r[n]}),e}var a=c(),f="Sentry Logger ",u=function(){function n(){this._enabled=!1}return n.prototype.disable=function(){this._enabled=!1},n.prototype.enable=function(){this._enabled=!0},n.prototype.log=function(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];this._enabled&&s(function(){a.console.log(f+"[Log]: "+n.join(" "))})},n.prototype.warn=function(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];this._enabled&&s(function(){a.console.warn(f+"[Warn]: "+n.join(" "))})},n.prototype.error=function(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];this._enabled&&s(function(){a.console.error(f+"[Error]: "+n.join(" "))})},n}();a.__SENTRY__=a.__SENTRY__||{};var l;a.__SENTRY__.logger||(a.__SENTRY__.logger=new u);!function(n){n.PENDING="PENDING",n.RESOLVED="RESOLVED",n.REJECTED="REJECTED"}(l||(l={}));c();var _=function(){function n(o){this.name=n.id,this._options=r({debugger:!1,stringify:!1},o)}return n.prototype.setupOnce=function(o,t){o(function(o,r){var e=t().getIntegration(n);return e&&(e._options.debugger,s(function(){e._options.stringify?(console.log(JSON.stringify(o,null,2)),r&&console.log(JSON.stringify(r,null,2))):(console.log(o),r&&console.log(r))})),o})},n.id="Debug",n}();for(var p in o.Debug=_,n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},o)Object.prototype.hasOwnProperty.call(o,p)&&(n.Sentry.Integrations[p]=o[p])}(window);
!function(n){var o={};Object.defineProperty(o,"__esModule",{value:!0});var r=function(n,o){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,o){n.__proto__=o}||function(n,o){for(var r in o)o.hasOwnProperty(r)&&(n[r]=o[r])})(n,o)};var t=function(){return(t=Object.assign||function(n){for(var o,r=1,t=arguments.length;r<t;r++)for(var e in o=arguments[r])Object.prototype.hasOwnProperty.call(o,e)&&(n[e]=o[e]);return n}).apply(this,arguments)},e=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(n,o){return n.__proto__=o,n}:function(n,o){for(var r in o)n.hasOwnProperty(r)||(n[r]=o[r]);return n});!function(n){function o(o){var r=this.constructor,t=n.call(this,o)||this;return t.message=o,t.name=r.prototype.constructor.name,e(t,r.prototype),t}(function(n,o){function t(){this.constructor=n}r(n,o),n.prototype=null===o?Object.create(o):(t.prototype=o.prototype,new t)})(o,n)}(Error);function i(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)}var c={};function a(){return i()?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:c}function f(n){var o=a();if(!("console"in o))return n();var r=o.console,t={};["debug","info","warn","error","log","assert"].forEach(function(n){n in o.console&&r[n].__sentry_original__&&(t[n]=r[n],r[n]=r[n].__sentry_original__)});var e=n();return Object.keys(t).forEach(function(n){r[n]=t[n]}),e}var u=Date.now(),s=0,p={now:function(){var n=Date.now()-u;return n<s&&(n=s),s=n,n},timeOrigin:u},l=(function(){if(i())try{return(n=module,o="perf_hooks",n.require(o)).performance}catch(n){return p}var n,o;a().performance&&void 0===performance.timeOrigin&&(performance.timeOrigin=performance.timing.navigationStart),a().performance}(),a()),_="Sentry Logger ",g=function(){function n(){this._enabled=!1}return n.prototype.disable=function(){this._enabled=!1},n.prototype.enable=function(){this._enabled=!0},n.prototype.log=function(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];this._enabled&&f(function(){l.console.log(_+"[Log]: "+n.join(" "))})},n.prototype.warn=function(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];this._enabled&&f(function(){l.console.warn(_+"[Warn]: "+n.join(" "))})},n.prototype.error=function(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];this._enabled&&f(function(){l.console.error(_+"[Error]: "+n.join(" "))})},n}();l.__SENTRY__=l.__SENTRY__||{};var y;l.__SENTRY__.logger||(l.__SENTRY__.logger=new g);!function(n){n.PENDING="PENDING",n.RESOLVED="RESOLVED",n.REJECTED="REJECTED"}(y||(y={}));a();var d=function(){function n(o){this.name=n.id,this._options=t({debugger:!1,stringify:!1},o)}return n.prototype.setupOnce=function(o,r){o(function(o,t){var e=r().getIntegration(n);return e&&(e._options.debugger,f(function(){e._options.stringify?(console.log(JSON.stringify(o,null,2)),t&&console.log(JSON.stringify(t,null,2))):(console.log(o),t&&console.log(t))})),o})},n.id="Debug",n}();for(var h in o.Debug=d,n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},o)Object.prototype.hasOwnProperty.call(o,h)&&(n.Sentry.Integrations[h]=o[h])}(window);
//# sourceMappingURL=debug.min.js.map

@@ -103,2 +103,11 @@ (function (__window) {

/**
* Requires a module which is protected _against bundler minification.
*
* @param request The module path to resolve
*/
function dynamicRequire(mod, request) {
// tslint:disable-next-line: no-unsafe-any
return mod.require(request);
}
/**
* Checks whether we're in the Node.js or Browser environment

@@ -151,2 +160,39 @@ *

}
var INITIAL_TIME = Date.now();
var prevNow = 0;
var performanceFallback = {
now: function () {
var now = Date.now() - INITIAL_TIME;
if (now < prevNow) {
now = prevNow;
}
prevNow = now;
return now;
},
timeOrigin: INITIAL_TIME,
};
var crossPlatformPerformance = (function () {
if (isNodeEnv()) {
try {
var perfHooks = dynamicRequire(module, 'perf_hooks');
return perfHooks.performance;
}
catch (_) {
return performanceFallback;
}
}
if (getGlobalObject().performance) {
// Polyfill for performance.timeOrigin.
//
// While performance.timing.navigationStart is deprecated in favor of performance.timeOrigin, performance.timeOrigin
// is not as widely supported. Namely, performance.timeOrigin is undefined in Safari as of writing.
// tslint:disable-next-line:strict-type-predicates
if (performance.timeOrigin === undefined) {
// @ts-ignore
// tslint:disable-next-line:deprecation
performance.timeOrigin = performance.timing.navigationStart;
}
}
return getGlobalObject().performance || performanceFallback;
})();

@@ -153,0 +199,0 @@ // TODO: Implement different loggers for different environments

@@ -1,2 +0,2 @@

!function(n){var r={};Object.defineProperty(r,"__esModule",{value:!0});var t=function(n,r){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var t in r)r.hasOwnProperty(t)&&(n[t]=r[t])})(n,r)};var e=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(n,r){return n.__proto__=r,n}:function(n,r){for(var t in r)n.hasOwnProperty(t)||(n[t]=r[t]);return n});!function(n){function r(r){var t=this.constructor,o=n.call(this,r)||this;return o.message=r,o.name=t.prototype.constructor.name,e(o,t.prototype),o}(function(n,r){function e(){this.constructor=n}t(n,r),n.prototype=null===r?Object.create(r):(e.prototype=r.prototype,new e)})(r,n)}(Error);var o={};function i(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:o}function c(n){var r=i();if(!("console"in r))return n();var t=r.console,e={};["debug","info","warn","error","log","assert"].forEach(function(n){n in r.console&&t[n].__sentry_original__&&(e[n]=t[n],t[n]=t[n].__sentry_original__)});var o=n();return Object.keys(e).forEach(function(n){t[n]=e[n]}),o}var a=i(),s="Sentry Logger ",f=function(){function n(){this._enabled=!1}return n.prototype.disable=function(){this._enabled=!1},n.prototype.enable=function(){this._enabled=!0},n.prototype.log=function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];this._enabled&&c(function(){a.console.log(s+"[Log]: "+n.join(" "))})},n.prototype.warn=function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];this._enabled&&c(function(){a.console.warn(s+"[Warn]: "+n.join(" "))})},n.prototype.error=function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];this._enabled&&c(function(){a.console.error(s+"[Error]: "+n.join(" "))})},n}();a.__SENTRY__=a.__SENTRY__||{};var u,_=a.__SENTRY__.logger||(a.__SENTRY__.logger=new f);!function(n){n.PENDING="PENDING",n.RESOLVED="RESOLVED",n.REJECTED="REJECTED"}(u||(u={}));i();var p=function(){function n(r){void 0===r&&(r={}),this.name=n.id,this._Ember=r.Ember||i().Ember}return n.prototype.setupOnce=function(r,t){var e=this;if(this._Ember){var o=this._Ember.onerror;this._Ember.onerror=function(r){if(t().getIntegration(n)&&t().captureException(r,{originalException:r}),"function"==typeof o)o.call(e._Ember,r);else if(e._Ember.testing)throw r},this._Ember.RSVP.on("error",function(r){t().getIntegration(n)&&t().withScope(function(n){!function(n,r){try{return n instanceof r}catch(n){return!1}}(r,Error)?(n.setExtra("reason",r),t().captureMessage("Unhandled Promise error detected")):(n.setExtra("context","Unhandled Promise error detected"),t().captureException(r,{originalException:r}))})})}else _.error("EmberIntegration is missing an Ember instance")},n.id="Ember",n}();for(var l in r.Ember=p,n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},r)Object.prototype.hasOwnProperty.call(r,l)&&(n.Sentry.Integrations[l]=r[l])}(window);
!function(r){var n={};Object.defineProperty(n,"__esModule",{value:!0});var e=function(r,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,n){r.__proto__=n}||function(r,n){for(var e in n)n.hasOwnProperty(e)&&(r[e]=n[e])})(r,n)};var t=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(r,n){return r.__proto__=n,r}:function(r,n){for(var e in n)r.hasOwnProperty(e)||(r[e]=n[e]);return r});!function(r){function n(n){var e=this.constructor,o=r.call(this,n)||this;return o.message=n,o.name=e.prototype.constructor.name,t(o,e.prototype),o}(function(r,n){function t(){this.constructor=r}e(r,n),r.prototype=null===n?Object.create(n):(t.prototype=n.prototype,new t)})(n,r)}(Error);function o(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)}var i={};function c(){return o()?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:i}function a(r){var n=c();if(!("console"in n))return r();var e=n.console,t={};["debug","info","warn","error","log","assert"].forEach(function(r){r in n.console&&e[r].__sentry_original__&&(t[r]=e[r],e[r]=e[r].__sentry_original__)});var o=r();return Object.keys(t).forEach(function(r){e[r]=t[r]}),o}var f=Date.now(),s=0,u={now:function(){var r=Date.now()-f;return r<s&&(r=s),s=r,r},timeOrigin:f},p=(function(){if(o())try{return(r=module,n="perf_hooks",r.require(n)).performance}catch(r){return u}var r,n;c().performance&&void 0===performance.timeOrigin&&(performance.timeOrigin=performance.timing.navigationStart),c().performance}(),c()),_="Sentry Logger ",l=function(){function r(){this._enabled=!1}return r.prototype.disable=function(){this._enabled=!1},r.prototype.enable=function(){this._enabled=!0},r.prototype.log=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];this._enabled&&a(function(){p.console.log(_+"[Log]: "+r.join(" "))})},r.prototype.warn=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];this._enabled&&a(function(){p.console.warn(_+"[Warn]: "+r.join(" "))})},r.prototype.error=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];this._enabled&&a(function(){p.console.error(_+"[Error]: "+r.join(" "))})},r}();p.__SENTRY__=p.__SENTRY__||{};var E,g=p.__SENTRY__.logger||(p.__SENTRY__.logger=new l);!function(r){r.PENDING="PENDING",r.RESOLVED="RESOLVED",r.REJECTED="REJECTED"}(E||(E={}));c();var y=function(){function r(n){void 0===n&&(n={}),this.name=r.id,this._Ember=n.Ember||c().Ember}return r.prototype.setupOnce=function(n,e){var t=this;if(this._Ember){var o=this._Ember.onerror;this._Ember.onerror=function(n){if(e().getIntegration(r)&&e().captureException(n,{originalException:n}),"function"==typeof o)o.call(t._Ember,n);else if(t._Ember.testing)throw n},this._Ember.RSVP.on("error",function(n){e().getIntegration(r)&&e().withScope(function(r){!function(r,n){try{return r instanceof n}catch(r){return!1}}(n,Error)?(r.setExtra("reason",n),e().captureMessage("Unhandled Promise error detected")):(r.setExtra("context","Unhandled Promise error detected"),e().captureException(n,{originalException:n}))})})}else g.error("EmberIntegration is missing an Ember instance")},r.id="Ember",r}();for(var d in n.Ember=y,r.Sentry=r.Sentry||{},r.Sentry.Integrations=r.Sentry.Integrations||{},n)Object.prototype.hasOwnProperty.call(n,d)&&(r.Sentry.Integrations[d]=n[d])}(window);
//# sourceMappingURL=ember.min.js.map

@@ -200,2 +200,11 @@ (function (__window) {

/**
* Requires a module which is protected _against bundler minification.
*
* @param request The module path to resolve
*/
function dynamicRequire(mod, request) {
// tslint:disable-next-line: no-unsafe-any
return mod.require(request);
}
/**
* Checks whether we're in the Node.js or Browser environment

@@ -325,2 +334,39 @@ *

}
var INITIAL_TIME = Date.now();
var prevNow = 0;
var performanceFallback = {
now: function () {
var now = Date.now() - INITIAL_TIME;
if (now < prevNow) {
now = prevNow;
}
prevNow = now;
return now;
},
timeOrigin: INITIAL_TIME,
};
var crossPlatformPerformance = (function () {
if (isNodeEnv()) {
try {
var perfHooks = dynamicRequire(module, 'perf_hooks');
return perfHooks.performance;
}
catch (_) {
return performanceFallback;
}
}
if (getGlobalObject().performance) {
// Polyfill for performance.timeOrigin.
//
// While performance.timing.navigationStart is deprecated in favor of performance.timeOrigin, performance.timeOrigin
// is not as widely supported. Namely, performance.timeOrigin is undefined in Safari as of writing.
// tslint:disable-next-line:strict-type-predicates
if (performance.timeOrigin === undefined) {
// @ts-ignore
// tslint:disable-next-line:deprecation
performance.timeOrigin = performance.timing.navigationStart;
}
}
return getGlobalObject().performance || performanceFallback;
})();
var defaultFunctionName = '<anonymous>';

@@ -327,0 +373,0 @@ /**

@@ -1,2 +0,2 @@

!function(t){var n={};Object.defineProperty(n,"__esModule",{value:!0});var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,n){t.__proto__=n}||function(t,n){for(var e in n)n.hasOwnProperty(e)&&(t[e]=n[e])})(t,n)};var r=function(){return(r=Object.assign||function(t){for(var n,e=1,r=arguments.length;e<r;e++)for(var o in n=arguments[e])Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o]);return t}).apply(this,arguments)};var o=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(t,n){return t.__proto__=n,t}:function(t,n){for(var e in n)t.hasOwnProperty(e)||(t[e]=n[e]);return t});!function(t){function n(n){var e=this.constructor,r=t.call(this,n)||this;return r.message=n,r.name=e.prototype.constructor.name,o(r,e.prototype),r}(function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)})(n,t)}(Error);function i(t){switch(Object.prototype.toString.call(t)){case"[object Error]":case"[object Exception]":case"[object DOMException]":return!0;default:return f(t,Error)}}function a(t){return null===t||"object"!=typeof t&&"function"!=typeof t}function c(t){return"[object Object]"===Object.prototype.toString.call(t)}function u(t){return"undefined"!=typeof Element&&f(t,Element)}function f(t,n){try{return t instanceof n}catch(t){return!1}}var l={};function s(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:l}function p(t){var n=s();if(!("console"in n))return t();var e=n.console,r={};["debug","info","warn","error","log","assert"].forEach(function(t){t in n.console&&e[t].__sentry_original__&&(r[t]=e[t],e[t]=e[t].__sentry_original__)});var o=t();return Object.keys(r).forEach(function(t){e[t]=r[t]}),o}function y(t){try{for(var n=t,e=[],r=0,o=0,i=" > ".length,a=void 0;n&&r++<5&&!("html"===(a=h(n))||r>1&&o+e.length*i+a.length>=80);)e.push(a),o+=a.length,n=n.parentNode;return e.reverse().join(" > ")}catch(t){return"<unknown>"}}function h(t){var n,e,r,o,i,a,c=t,u=[];if(!c||!c.tagName)return"";if(u.push(c.tagName.toLowerCase()),c.id&&u.push("#"+c.id),(n=c.className)&&(a=n,"[object String]"===Object.prototype.toString.call(a)))for(e=n.split(/\s+/),i=0;i<e.length;i++)u.push("."+e[i]);var f=["type","name","title","alt"];for(i=0;i<f.length;i++)r=f[i],(o=c.getAttribute(r))&&u.push("["+r+'="'+o+'"]');return u.join("")}var g="<anonymous>";var _=s(),v="Sentry Logger ",d=function(){function t(){this._enabled=!1}return t.prototype.disable=function(){this._enabled=!1},t.prototype.enable=function(){this._enabled=!0},t.prototype.log=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];this._enabled&&p(function(){_.console.log(v+"[Log]: "+t.join(" "))})},t.prototype.warn=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];this._enabled&&p(function(){_.console.warn(v+"[Warn]: "+t.join(" "))})},t.prototype.error=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];this._enabled&&p(function(){_.console.error(v+"[Error]: "+t.join(" "))})},t}();_.__SENTRY__=_.__SENTRY__||{};var b,m=_.__SENTRY__.logger||(_.__SENTRY__.logger=new d),E=function(){function t(){this._hasWeakSet="function"==typeof WeakSet,this._inner=this._hasWeakSet?new WeakSet:[]}return t.prototype.memoize=function(t){if(this._hasWeakSet)return!!this._inner.has(t)||(this._inner.add(t),!1);for(var n=0;n<this._inner.length;n++){if(this._inner[n]===t)return!0}return this._inner.push(t),!1},t.prototype.unmemoize=function(t){if(this._hasWeakSet)this._inner.delete(t);else for(var n=0;n<this._inner.length;n++)if(this._inner[n]===t){this._inner.splice(n,1);break}},t}();function O(t){if(i(t)){var n=t,e={message:n.message,name:n.name,stack:n.stack};for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r]);return e}if(c=t,"undefined"!=typeof Event&&f(c,Event)){var o=t,a={};a.type=o.type;try{a.target=u(o.target)?y(o.target):Object.prototype.toString.call(o.target)}catch(t){a.target="<unknown>"}try{a.currentTarget=u(o.currentTarget)?y(o.currentTarget):Object.prototype.toString.call(o.currentTarget)}catch(t){a.currentTarget="<unknown>"}for(var r in"undefined"!=typeof CustomEvent&&f(t,CustomEvent)&&(a.detail=o.detail),o)Object.prototype.hasOwnProperty.call(o,r)&&(a[r]=o);return a}var c;return t}function j(t,n){return"domain"===n&&t&&"object"==typeof t&&t._events?"[Domain]":"domainEmitter"===n?"[DomainEmitter]":"undefined"!=typeof global&&t===global?"[Global]":"undefined"!=typeof window&&t===window?"[Window]":"undefined"!=typeof document&&t===document?"[Document]":c(e=t)&&"nativeEvent"in e&&"preventDefault"in e&&"stopPropagation"in e?"[SyntheticEvent]":"number"==typeof t&&t!=t?"[NaN]":void 0===t?"[undefined]":"function"==typeof t?"[Function: "+function(t){try{return t&&"function"==typeof t&&t.name||g}catch(t){return g}}(t)+"]":t;var e}function S(t,n,e,r){if(void 0===e&&(e=1/0),void 0===r&&(r=new E),0===e)return function(t){var n=Object.prototype.toString.call(t);if("string"==typeof t)return t;if("[object Object]"===n)return"[Object]";if("[object Array]"===n)return"[Array]";var e=j(t);return a(e)?e:n}(n);if(null!=n&&"function"==typeof n.toJSON)return n.toJSON();var o=j(n,t);if(a(o))return o;var i=O(n),c=Array.isArray(n)?[]:{};if(r.memoize(n))return"[Circular ~]";for(var u in i)Object.prototype.hasOwnProperty.call(i,u)&&(c[u]=S(u,i[u],e-1,r));return r.unmemoize(n),c}!function(t){t.PENDING="PENDING",t.RESOLVED="RESOLVED",t.REJECTED="REJECTED"}(b||(b={}));s();var w=function(){function t(n){void 0===n&&(n={depth:3}),this._options=n,this.name=t.id}return t.prototype.setupOnce=function(n,e){n(function(n,r){var o=e().getIntegration(t);return o?o.enhanceEventWithErrorData(n,r):n})},t.prototype.enhanceEventWithErrorData=function(t,n){var e;if(!n||!n.originalException||!i(n.originalException))return t;var o=n.originalException.name||n.originalException.constructor.name,a=this._extractErrorData(n.originalException);if(a){var u=r({},t.contexts),f=function(t,n){try{return JSON.parse(JSON.stringify(t,function(t,e){return S(t,e,n)}))}catch(t){return"**non-serializable**"}}(a,this._options.depth);return c(f)&&(u=r({},t.contexts,((e={})[o]=r({},f),e))),r({},t,{contexts:u})}return t},t.prototype._extractErrorData=function(t){var n,e,r=null;try{var o=["name","message","stack","line","column","fileName","lineNumber","columnNumber"],a=Object.getOwnPropertyNames(t).filter(function(t){return-1===o.indexOf(t)});if(a.length){var c={};try{for(var u=function(t){var n="function"==typeof Symbol&&t[Symbol.iterator],e=0;return n?n.call(t):{next:function(){return t&&e>=t.length&&(t=void 0),{value:t&&t[e++],done:!t}}}}(a),f=u.next();!f.done;f=u.next()){var l=f.value,s=t[l];i(s)&&(s=s.toString()),c[l]=s}}catch(t){n={error:t}}finally{try{f&&!f.done&&(e=u.return)&&e.call(u)}finally{if(n)throw n.error}}r=c}}catch(t){m.error("Unable to extract extra data from the Error object:",t)}return r},t.id="ExtraErrorData",t}();for(var N in n.ExtraErrorData=w,t.Sentry=t.Sentry||{},t.Sentry.Integrations=t.Sentry.Integrations||{},n)Object.prototype.hasOwnProperty.call(n,N)&&(t.Sentry.Integrations[N]=n[N])}(window);
!function(t){var n={};Object.defineProperty(n,"__esModule",{value:!0});var r=function(t,n){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,n){t.__proto__=n}||function(t,n){for(var r in n)n.hasOwnProperty(r)&&(t[r]=n[r])})(t,n)};var e=function(){return(e=Object.assign||function(t){for(var n,r=1,e=arguments.length;r<e;r++)for(var o in n=arguments[r])Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o]);return t}).apply(this,arguments)};var o=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(t,n){return t.__proto__=n,t}:function(t,n){for(var r in n)t.hasOwnProperty(r)||(t[r]=n[r]);return t});!function(t){function n(n){var r=this.constructor,e=t.call(this,n)||this;return e.message=n,e.name=r.prototype.constructor.name,o(e,r.prototype),e}(function(t,n){function e(){this.constructor=t}r(t,n),t.prototype=null===n?Object.create(n):(e.prototype=n.prototype,new e)})(n,t)}(Error);function i(t){switch(Object.prototype.toString.call(t)){case"[object Error]":case"[object Exception]":case"[object DOMException]":return!0;default:return f(t,Error)}}function a(t){return null===t||"object"!=typeof t&&"function"!=typeof t}function c(t){return"[object Object]"===Object.prototype.toString.call(t)}function u(t){return"undefined"!=typeof Element&&f(t,Element)}function f(t,n){try{return t instanceof n}catch(t){return!1}}function p(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)}var l={};function s(){return p()?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:l}function y(t){var n=s();if(!("console"in n))return t();var r=n.console,e={};["debug","info","warn","error","log","assert"].forEach(function(t){t in n.console&&r[t].__sentry_original__&&(e[t]=r[t],r[t]=r[t].__sentry_original__)});var o=t();return Object.keys(e).forEach(function(t){r[t]=e[t]}),o}function h(t){try{for(var n=t,r=[],e=0,o=0,i=" > ".length,a=void 0;n&&e++<5&&!("html"===(a=g(n))||e>1&&o+r.length*i+a.length>=80);)r.push(a),o+=a.length,n=n.parentNode;return r.reverse().join(" > ")}catch(t){return"<unknown>"}}function g(t){var n,r,e,o,i,a,c=t,u=[];if(!c||!c.tagName)return"";if(u.push(c.tagName.toLowerCase()),c.id&&u.push("#"+c.id),(n=c.className)&&(a=n,"[object String]"===Object.prototype.toString.call(a)))for(r=n.split(/\s+/),i=0;i<r.length;i++)u.push("."+r[i]);var f=["type","name","title","alt"];for(i=0;i<f.length;i++)e=f[i],(o=c.getAttribute(e))&&u.push("["+e+'="'+o+'"]');return u.join("")}var v=Date.now(),_=0,d={now:function(){var t=Date.now()-v;return t<_&&(t=_),_=t,t},timeOrigin:v},m=(function(){if(p())try{return(t=module,n="perf_hooks",t.require(n)).performance}catch(t){return d}var t,n;s().performance&&void 0===performance.timeOrigin&&(performance.timeOrigin=performance.timing.navigationStart),s().performance}(),"<anonymous>");var b=s(),E="Sentry Logger ",O=function(){function t(){this._enabled=!1}return t.prototype.disable=function(){this._enabled=!1},t.prototype.enable=function(){this._enabled=!0},t.prototype.log=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];this._enabled&&y(function(){b.console.log(E+"[Log]: "+t.join(" "))})},t.prototype.warn=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];this._enabled&&y(function(){b.console.warn(E+"[Warn]: "+t.join(" "))})},t.prototype.error=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];this._enabled&&y(function(){b.console.error(E+"[Error]: "+t.join(" "))})},t}();b.__SENTRY__=b.__SENTRY__||{};var j,w=b.__SENTRY__.logger||(b.__SENTRY__.logger=new O),S=function(){function t(){this._hasWeakSet="function"==typeof WeakSet,this._inner=this._hasWeakSet?new WeakSet:[]}return t.prototype.memoize=function(t){if(this._hasWeakSet)return!!this._inner.has(t)||(this._inner.add(t),!1);for(var n=0;n<this._inner.length;n++){if(this._inner[n]===t)return!0}return this._inner.push(t),!1},t.prototype.unmemoize=function(t){if(this._hasWeakSet)this._inner.delete(t);else for(var n=0;n<this._inner.length;n++)if(this._inner[n]===t){this._inner.splice(n,1);break}},t}();function N(t){if(i(t)){var n=t,r={message:n.message,name:n.name,stack:n.stack};for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e]);return r}if(c=t,"undefined"!=typeof Event&&f(c,Event)){var o=t,a={};a.type=o.type;try{a.target=u(o.target)?h(o.target):Object.prototype.toString.call(o.target)}catch(t){a.target="<unknown>"}try{a.currentTarget=u(o.currentTarget)?h(o.currentTarget):Object.prototype.toString.call(o.currentTarget)}catch(t){a.currentTarget="<unknown>"}for(var e in"undefined"!=typeof CustomEvent&&f(t,CustomEvent)&&(a.detail=o.detail),o)Object.prototype.hasOwnProperty.call(o,e)&&(a[e]=o);return a}var c;return t}function x(t,n){return"domain"===n&&t&&"object"==typeof t&&t._events?"[Domain]":"domainEmitter"===n?"[DomainEmitter]":"undefined"!=typeof global&&t===global?"[Global]":"undefined"!=typeof window&&t===window?"[Window]":"undefined"!=typeof document&&t===document?"[Document]":c(r=t)&&"nativeEvent"in r&&"preventDefault"in r&&"stopPropagation"in r?"[SyntheticEvent]":"number"==typeof t&&t!=t?"[NaN]":void 0===t?"[undefined]":"function"==typeof t?"[Function: "+function(t){try{return t&&"function"==typeof t&&t.name||m}catch(t){return m}}(t)+"]":t;var r}function D(t,n,r,e){if(void 0===r&&(r=1/0),void 0===e&&(e=new S),0===r)return function(t){var n=Object.prototype.toString.call(t);if("string"==typeof t)return t;if("[object Object]"===n)return"[Object]";if("[object Array]"===n)return"[Array]";var r=x(t);return a(r)?r:n}(n);if(null!=n&&"function"==typeof n.toJSON)return n.toJSON();var o=x(n,t);if(a(o))return o;var i=N(n),c=Array.isArray(n)?[]:{};if(e.memoize(n))return"[Circular ~]";for(var u in i)Object.prototype.hasOwnProperty.call(i,u)&&(c[u]=D(u,i[u],r-1,e));return e.unmemoize(n),c}!function(t){t.PENDING="PENDING",t.RESOLVED="RESOLVED",t.REJECTED="REJECTED"}(j||(j={}));s();var k=function(){function t(n){void 0===n&&(n={depth:3}),this._options=n,this.name=t.id}return t.prototype.setupOnce=function(n,r){n(function(n,e){var o=r().getIntegration(t);return o?o.enhanceEventWithErrorData(n,e):n})},t.prototype.enhanceEventWithErrorData=function(t,n){var r;if(!n||!n.originalException||!i(n.originalException))return t;var o=n.originalException.name||n.originalException.constructor.name,a=this._extractErrorData(n.originalException);if(a){var u=e({},t.contexts),f=function(t,n){try{return JSON.parse(JSON.stringify(t,function(t,r){return D(t,r,n)}))}catch(t){return"**non-serializable**"}}(a,this._options.depth);return c(f)&&(u=e({},t.contexts,((r={})[o]=e({},f),r))),e({},t,{contexts:u})}return t},t.prototype._extractErrorData=function(t){var n,r,e=null;try{var o=["name","message","stack","line","column","fileName","lineNumber","columnNumber"],a=Object.getOwnPropertyNames(t).filter(function(t){return-1===o.indexOf(t)});if(a.length){var c={};try{for(var u=function(t){var n="function"==typeof Symbol&&t[Symbol.iterator],r=0;return n?n.call(t):{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}}}(a),f=u.next();!f.done;f=u.next()){var p=f.value,l=t[p];i(l)&&(l=l.toString()),c[p]=l}}catch(t){n={error:t}}finally{try{f&&!f.done&&(r=u.return)&&r.call(u)}finally{if(n)throw n.error}}e=c}}catch(t){w.error("Unable to extract extra data from the Error object:",t)}return e},t.id="ExtraErrorData",t}();for(var P in n.ExtraErrorData=k,t.Sentry=t.Sentry||{},t.Sentry.Integrations=t.Sentry.Integrations||{},n)Object.prototype.hasOwnProperty.call(n,P)&&(t.Sentry.Integrations[P]=n[P])}(window);
//# sourceMappingURL=extraerrordata.min.js.map

@@ -97,2 +97,11 @@ (function (__window) {

/**
* Requires a module which is protected _against bundler minification.
*
* @param request The module path to resolve
*/
function dynamicRequire(mod, request) {
// tslint:disable-next-line: no-unsafe-any
return mod.require(request);
}
/**
* Checks whether we're in the Node.js or Browser environment

@@ -145,2 +154,39 @@ *

}
var INITIAL_TIME = Date.now();
var prevNow = 0;
var performanceFallback = {
now: function () {
var now = Date.now() - INITIAL_TIME;
if (now < prevNow) {
now = prevNow;
}
prevNow = now;
return now;
},
timeOrigin: INITIAL_TIME,
};
var crossPlatformPerformance = (function () {
if (isNodeEnv()) {
try {
var perfHooks = dynamicRequire(module, 'perf_hooks');
return perfHooks.performance;
}
catch (_) {
return performanceFallback;
}
}
if (getGlobalObject().performance) {
// Polyfill for performance.timeOrigin.
//
// While performance.timing.navigationStart is deprecated in favor of performance.timeOrigin, performance.timeOrigin
// is not as widely supported. Namely, performance.timeOrigin is undefined in Safari as of writing.
// tslint:disable-next-line:strict-type-predicates
if (performance.timeOrigin === undefined) {
// @ts-ignore
// tslint:disable-next-line:deprecation
performance.timeOrigin = performance.timing.navigationStart;
}
}
return getGlobalObject().performance || performanceFallback;
})();

@@ -147,0 +193,0 @@ // TODO: Implement different loggers for different environments

@@ -1,2 +0,2 @@

!function(t){var n={};Object.defineProperty(n,"__esModule",{value:!0});var r=function(t,n){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,n){t.__proto__=n}||function(t,n){for(var r in n)n.hasOwnProperty(r)&&(t[r]=n[r])})(t,n)};var e=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(t,n){return t.__proto__=n,t}:function(t,n){for(var r in n)t.hasOwnProperty(r)||(t[r]=n[r]);return t});!function(t){function n(n){var r=this.constructor,o=t.call(this,n)||this;return o.message=n,o.name=r.prototype.constructor.name,e(o,r.prototype),o}(function(t,n){function e(){this.constructor=t}r(t,n),t.prototype=null===n?Object.create(n):(e.prototype=n.prototype,new e)})(n,t)}(Error);var o={};function i(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:o}function a(t){var n=i();if(!("console"in n))return t();var r=n.console,e={};["debug","info","warn","error","log","assert"].forEach(function(t){t in n.console&&r[t].__sentry_original__&&(e[t]=r[t],r[t]=r[t].__sentry_original__)});var o=t();return Object.keys(e).forEach(function(t){r[t]=e[t]}),o}var s=i(),c="Sentry Logger ",u=function(){function t(){this._enabled=!1}return t.prototype.disable=function(){this._enabled=!1},t.prototype.enable=function(){this._enabled=!0},t.prototype.log=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];this._enabled&&a(function(){s.console.log(c+"[Log]: "+t.join(" "))})},t.prototype.warn=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];this._enabled&&a(function(){s.console.warn(c+"[Warn]: "+t.join(" "))})},t.prototype.error=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];this._enabled&&a(function(){s.console.error(c+"[Error]: "+t.join(" "))})},t}();s.__SENTRY__=s.__SENTRY__||{};var f;s.__SENTRY__.logger||(s.__SENTRY__.logger=new u);!function(t){t.PENDING="PENDING",t.RESOLVED="RESOLVED",t.REJECTED="REJECTED"}(f||(f={}));var p;i();!function(t){t.Crash="crash",t.Deprecation="deprecation",t.Intervention="intervention"}(p||(p={}));var l=function(){function t(n){void 0===n&&(n={types:[p.Crash,p.Deprecation,p.Intervention]}),this._options=n,this.name=t.id}return t.prototype.setupOnce=function(t,n){"ReportingObserver"in i()&&(this._getCurrentHub=n,new(i().ReportingObserver)(this.handler.bind(this),{buffered:!0,types:this._options.types}).observe())},t.prototype.handler=function(n){var r,e,o=this._getCurrentHub&&this._getCurrentHub();if(o&&o.getIntegration(t)){var i=function(t){o.withScope(function(n){n.setExtra("url",t.url);var r="ReportingObserver ["+t.type+"]",e="No details available";if(t.body){var i,a={};for(var s in t.body)a[s]=t.body[s];if(n.setExtra("body",a),t.type===p.Crash)e=[(i=t.body).crashId||"",i.reason||""].join(" ").trim()||e;else e=(i=t.body).message||e}o.captureMessage(r+": "+e)})};try{for(var a=function(t){var n="function"==typeof Symbol&&t[Symbol.iterator],r=0;return n?n.call(t):{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}}}(n),s=a.next();!s.done;s=a.next()){i(s.value)}}catch(t){r={error:t}}finally{try{s&&!s.done&&(e=a.return)&&e.call(a)}finally{if(r)throw r.error}}}},t.id="ReportingObserver",t}();for(var _ in n.ReportingObserver=l,t.Sentry=t.Sentry||{},t.Sentry.Integrations=t.Sentry.Integrations||{},n)Object.prototype.hasOwnProperty.call(n,_)&&(t.Sentry.Integrations[_]=n[_])}(window);
!function(r){var n={};Object.defineProperty(n,"__esModule",{value:!0});var e=function(r,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,n){r.__proto__=n}||function(r,n){for(var e in n)n.hasOwnProperty(e)&&(r[e]=n[e])})(r,n)};var t=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(r,n){return r.__proto__=n,r}:function(r,n){for(var e in n)r.hasOwnProperty(e)||(r[e]=n[e]);return r});!function(r){function n(n){var e=this.constructor,o=r.call(this,n)||this;return o.message=n,o.name=e.prototype.constructor.name,t(o,e.prototype),o}(function(r,n){function t(){this.constructor=r}e(r,n),r.prototype=null===n?Object.create(n):(t.prototype=n.prototype,new t)})(n,r)}(Error);function o(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)}var i={};function a(){return o()?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:i}function c(r){var n=a();if(!("console"in n))return r();var e=n.console,t={};["debug","info","warn","error","log","assert"].forEach(function(r){r in n.console&&e[r].__sentry_original__&&(t[r]=e[r],e[r]=e[r].__sentry_original__)});var o=r();return Object.keys(t).forEach(function(r){e[r]=t[r]}),o}var s=Date.now(),f=0,u={now:function(){var r=Date.now()-s;return r<f&&(r=f),f=r,r},timeOrigin:s},p=(function(){if(o())try{return(r=module,n="perf_hooks",r.require(n)).performance}catch(r){return u}var r,n;a().performance&&void 0===performance.timeOrigin&&(performance.timeOrigin=performance.timing.navigationStart),a().performance}(),a()),l="Sentry Logger ",_=function(){function r(){this._enabled=!1}return r.prototype.disable=function(){this._enabled=!1},r.prototype.enable=function(){this._enabled=!0},r.prototype.log=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];this._enabled&&c(function(){p.console.log(l+"[Log]: "+r.join(" "))})},r.prototype.warn=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];this._enabled&&c(function(){p.console.warn(l+"[Warn]: "+r.join(" "))})},r.prototype.error=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];this._enabled&&c(function(){p.console.error(l+"[Error]: "+r.join(" "))})},r}();p.__SENTRY__=p.__SENTRY__||{};var y;p.__SENTRY__.logger||(p.__SENTRY__.logger=new _);!function(r){r.PENDING="PENDING",r.RESOLVED="RESOLVED",r.REJECTED="REJECTED"}(y||(y={}));var v;a();!function(r){r.Crash="crash",r.Deprecation="deprecation",r.Intervention="intervention"}(v||(v={}));var d=function(){function r(n){void 0===n&&(n={types:[v.Crash,v.Deprecation,v.Intervention]}),this._options=n,this.name=r.id}return r.prototype.setupOnce=function(r,n){"ReportingObserver"in a()&&(this._getCurrentHub=n,new(a().ReportingObserver)(this.handler.bind(this),{buffered:!0,types:this._options.types}).observe())},r.prototype.handler=function(n){var e,t,o=this._getCurrentHub&&this._getCurrentHub();if(o&&o.getIntegration(r)){var i=function(r){o.withScope(function(n){n.setExtra("url",r.url);var e="ReportingObserver ["+r.type+"]",t="No details available";if(r.body){var i,a={};for(var c in r.body)a[c]=r.body[c];if(n.setExtra("body",a),r.type===v.Crash)t=[(i=r.body).crashId||"",i.reason||""].join(" ").trim()||t;else t=(i=r.body).message||t}o.captureMessage(e+": "+t)})};try{for(var a=function(r){var n="function"==typeof Symbol&&r[Symbol.iterator],e=0;return n?n.call(r):{next:function(){return r&&e>=r.length&&(r=void 0),{value:r&&r[e++],done:!r}}}}(n),c=a.next();!c.done;c=a.next()){i(c.value)}}catch(r){e={error:r}}finally{try{c&&!c.done&&(t=a.return)&&t.call(a)}finally{if(e)throw e.error}}}},r.id="ReportingObserver",r}();for(var g in n.ReportingObserver=d,r.Sentry=r.Sentry||{},r.Sentry.Integrations=r.Sentry.Integrations||{},n)Object.prototype.hasOwnProperty.call(n,g)&&(r.Sentry.Integrations[g]=n[g])}(window);
//# sourceMappingURL=reportingobserver.min.js.map

@@ -97,2 +97,11 @@ (function (__window) {

/**
* Requires a module which is protected _against bundler minification.
*
* @param request The module path to resolve
*/
function dynamicRequire(mod, request) {
// tslint:disable-next-line: no-unsafe-any
return mod.require(request);
}
/**
* Checks whether we're in the Node.js or Browser environment

@@ -145,2 +154,39 @@ *

}
var INITIAL_TIME = Date.now();
var prevNow = 0;
var performanceFallback = {
now: function () {
var now = Date.now() - INITIAL_TIME;
if (now < prevNow) {
now = prevNow;
}
prevNow = now;
return now;
},
timeOrigin: INITIAL_TIME,
};
var crossPlatformPerformance = (function () {
if (isNodeEnv()) {
try {
var perfHooks = dynamicRequire(module, 'perf_hooks');
return perfHooks.performance;
}
catch (_) {
return performanceFallback;
}
}
if (getGlobalObject().performance) {
// Polyfill for performance.timeOrigin.
//
// While performance.timing.navigationStart is deprecated in favor of performance.timeOrigin, performance.timeOrigin
// is not as widely supported. Namely, performance.timeOrigin is undefined in Safari as of writing.
// tslint:disable-next-line:strict-type-predicates
if (performance.timeOrigin === undefined) {
// @ts-ignore
// tslint:disable-next-line:deprecation
performance.timeOrigin = performance.timing.navigationStart;
}
}
return getGlobalObject().performance || performanceFallback;
})();

@@ -147,0 +193,0 @@ // TODO: Implement different loggers for different environments

@@ -1,2 +0,2 @@

!function(t){var e={};Object.defineProperty(e,"__esModule",{value:!0});var r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r])})(t,e)};var n=function(){return(n=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)},o=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(t,e){return t.__proto__=e,t}:function(t,e){for(var r in e)t.hasOwnProperty(r)||(t[r]=e[r]);return t});!function(t){function e(e){var r=this.constructor,n=t.call(this,e)||this;return n.message=e,n.name=r.prototype.constructor.name,o(n,r.prototype),n}(function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)})(e,t)}(Error);var i={};function c(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:i}function a(t){var e=c();if(!("console"in e))return t();var r=e.console,n={};["debug","info","warn","error","log","assert"].forEach(function(t){t in e.console&&r[t].__sentry_original__&&(n[t]=r[t],r[t]=r[t].__sentry_original__)});var o=t();return Object.keys(n).forEach(function(t){r[t]=n[t]}),o}var s=c(),f="Sentry Logger ",u=function(){function t(){this._enabled=!1}return t.prototype.disable=function(){this._enabled=!1},t.prototype.enable=function(){this._enabled=!0},t.prototype.log=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];this._enabled&&a(function(){s.console.log(f+"[Log]: "+t.join(" "))})},t.prototype.warn=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];this._enabled&&a(function(){s.console.warn(f+"[Warn]: "+t.join(" "))})},t.prototype.error=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];this._enabled&&a(function(){s.console.error(f+"[Error]: "+t.join(" "))})},t}();s.__SENTRY__=s.__SENTRY__||{};s.__SENTRY__.logger||(s.__SENTRY__.logger=new u);var p,l=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;function _(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];for(var r="",n=!1,o=t.length-1;o>=-1&&!n;o--){var i=o>=0?t[o]:"/";i&&(r=i+"/"+r,n="/"===i.charAt(0))}return(n?"/":"")+(r=function(t,e){for(var r=0,n=t.length-1;n>=0;n--){var o=t[n];"."===o?t.splice(n,1):".."===o?(t.splice(n,1),r++):r&&(t.splice(n,1),r--)}if(e)for(;r--;r)t.unshift("..");return t}(r.split("/").filter(function(t){return!!t}),!n).join("/"))||"."}function h(t){for(var e=0;e<t.length&&""===t[e];e++);for(var r=t.length-1;r>=0&&""===t[r];r--);return e>r?[]:t.slice(e,r-e+1)}function v(t,e){var r,n,o=(r=t,n=l.exec(r),n?n.slice(1):[])[2];return e&&o.substr(-1*e.length)===e&&(o=o.substr(0,o.length-e.length)),o}!function(t){t.PENDING="PENDING",t.RESOLVED="RESOLVED",t.REJECTED="REJECTED"}(p||(p={}));c();var y=function(){function t(e){var r=this;void 0===e&&(e={}),this.name=t.id,this._iteratee=function(t){if(!t.filename)return t;var e=/^[A-Z]:\\/.test(t.filename),n=/^\//.test(t.filename);if(t.filename&&(e||n)){var o=e?t.filename.replace(/^[A-Z]:/,"").replace(/\\/g,"/"):t.filename,i=r._root?function(t,e){t=_(t).substr(1),e=_(e).substr(1);for(var r=h(t.split("/")),n=h(e.split("/")),o=Math.min(r.length,n.length),i=o,c=0;c<o;c++)if(r[c]!==n[c]){i=c;break}var a=[];for(c=i;c<r.length;c++)a.push("..");return(a=a.concat(n.slice(i))).join("/")}(r._root,o):v(o);t.filename="app:///"+i}return t},e.root&&(this._root=e.root),e.iteratee&&(this._iteratee=e.iteratee)}return t.prototype.setupOnce=function(e,r){e(function(e){var n=r().getIntegration(t);return n?n.process(e):e})},t.prototype.process=function(t){return t.exception&&Array.isArray(t.exception.values)?this._processExceptionsEvent(t):t.stacktrace?this._processStacktraceEvent(t):t},t.prototype._processExceptionsEvent=function(t){var e=this;try{return n({},t,{exception:n({},t.exception,{values:t.exception.values.map(function(t){return n({},t,{stacktrace:e._processStacktrace(t.stacktrace)})})})})}catch(e){return t}},t.prototype._processStacktraceEvent=function(t){try{return n({},t,{stacktrace:this._processStacktrace(t.stacktrace)})}catch(e){return t}},t.prototype._processStacktrace=function(t){var e=this;return n({},t,{frames:t&&t.frames&&t.frames.map(function(t){return e._iteratee(t)})})},t.id="RewriteFrames",t}();for(var g in e.RewriteFrames=y,t.Sentry=t.Sentry||{},t.Sentry.Integrations=t.Sentry.Integrations||{},e)Object.prototype.hasOwnProperty.call(e,g)&&(t.Sentry.Integrations[g]=e[g])}(window);
!function(t){var r={};Object.defineProperty(r,"__esModule",{value:!0});var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,r){t.__proto__=r}||function(t,r){for(var e in r)r.hasOwnProperty(e)&&(t[e]=r[e])})(t,r)};var n=function(){return(n=Object.assign||function(t){for(var r,e=1,n=arguments.length;e<n;e++)for(var o in r=arguments[e])Object.prototype.hasOwnProperty.call(r,o)&&(t[o]=r[o]);return t}).apply(this,arguments)},o=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(t,r){return t.__proto__=r,t}:function(t,r){for(var e in r)t.hasOwnProperty(e)||(t[e]=r[e]);return t});!function(t){function r(r){var e=this.constructor,n=t.call(this,r)||this;return n.message=r,n.name=e.prototype.constructor.name,o(n,e.prototype),n}(function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)})(r,t)}(Error);function i(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)}var a={};function c(){return i()?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:a}function s(t){var r=c();if(!("console"in r))return t();var e=r.console,n={};["debug","info","warn","error","log","assert"].forEach(function(t){t in r.console&&e[t].__sentry_original__&&(n[t]=e[t],e[t]=e[t].__sentry_original__)});var o=t();return Object.keys(n).forEach(function(t){e[t]=n[t]}),o}var f=Date.now(),u=0,p={now:function(){var t=Date.now()-f;return t<u&&(t=u),u=t,t},timeOrigin:f},l=(function(){if(i())try{return(t=module,r="perf_hooks",t.require(r)).performance}catch(t){return p}var t,r;c().performance&&void 0===performance.timeOrigin&&(performance.timeOrigin=performance.timing.navigationStart),c().performance}(),c()),_="Sentry Logger ",h=function(){function t(){this._enabled=!1}return t.prototype.disable=function(){this._enabled=!1},t.prototype.enable=function(){this._enabled=!0},t.prototype.log=function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];this._enabled&&s(function(){l.console.log(_+"[Log]: "+t.join(" "))})},t.prototype.warn=function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];this._enabled&&s(function(){l.console.warn(_+"[Warn]: "+t.join(" "))})},t.prototype.error=function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];this._enabled&&s(function(){l.console.error(_+"[Error]: "+t.join(" "))})},t}();l.__SENTRY__=l.__SENTRY__||{};l.__SENTRY__.logger||(l.__SENTRY__.logger=new h);var v,y=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;function g(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];for(var e="",n=!1,o=t.length-1;o>=-1&&!n;o--){var i=o>=0?t[o]:"/";i&&(e=i+"/"+e,n="/"===i.charAt(0))}return(n?"/":"")+(e=function(t,r){for(var e=0,n=t.length-1;n>=0;n--){var o=t[n];"."===o?t.splice(n,1):".."===o?(t.splice(n,1),e++):e&&(t.splice(n,1),e--)}if(r)for(;e--;e)t.unshift("..");return t}(e.split("/").filter(function(t){return!!t}),!n).join("/"))||"."}function m(t){for(var r=0;r<t.length&&""===t[r];r++);for(var e=t.length-1;e>=0&&""===t[e];e--);return r>e?[]:t.slice(r,e-r+1)}function E(t,r){var e,n,o=(e=t,n=y.exec(e),n?n.slice(1):[])[2];return r&&o.substr(-1*r.length)===r&&(o=o.substr(0,o.length-r.length)),o}!function(t){t.PENDING="PENDING",t.RESOLVED="RESOLVED",t.REJECTED="REJECTED"}(v||(v={}));c();var b=function(){function t(r){var e=this;void 0===r&&(r={}),this.name=t.id,this._iteratee=function(t){if(!t.filename)return t;var r=/^[A-Z]:\\/.test(t.filename),n=/^\//.test(t.filename);if(t.filename&&(r||n)){var o=r?t.filename.replace(/^[A-Z]:/,"").replace(/\\/g,"/"):t.filename,i=e._root?function(t,r){t=g(t).substr(1),r=g(r).substr(1);for(var e=m(t.split("/")),n=m(r.split("/")),o=Math.min(e.length,n.length),i=o,a=0;a<o;a++)if(e[a]!==n[a]){i=a;break}var c=[];for(a=i;a<e.length;a++)c.push("..");return(c=c.concat(n.slice(i))).join("/")}(e._root,o):E(o);t.filename="app:///"+i}return t},r.root&&(this._root=r.root),r.iteratee&&(this._iteratee=r.iteratee)}return t.prototype.setupOnce=function(r,e){r(function(r){var n=e().getIntegration(t);return n?n.process(r):r})},t.prototype.process=function(t){return t.exception&&Array.isArray(t.exception.values)?this._processExceptionsEvent(t):t.stacktrace?this._processStacktraceEvent(t):t},t.prototype._processExceptionsEvent=function(t){var r=this;try{return n({},t,{exception:n({},t.exception,{values:t.exception.values.map(function(t){return n({},t,{stacktrace:r._processStacktrace(t.stacktrace)})})})})}catch(r){return t}},t.prototype._processStacktraceEvent=function(t){try{return n({},t,{stacktrace:this._processStacktrace(t.stacktrace)})}catch(r){return t}},t.prototype._processStacktrace=function(t){var r=this;return n({},t,{frames:t&&t.frames&&t.frames.map(function(t){return r._iteratee(t)})})},t.id="RewriteFrames",t}();for(var d in r.RewriteFrames=b,t.Sentry=t.Sentry||{},t.Sentry.Integrations=t.Sentry.Integrations||{},r)Object.prototype.hasOwnProperty.call(r,d)&&(t.Sentry.Integrations[d]=r[d])}(window);
//# sourceMappingURL=rewriteframes.min.js.map

@@ -96,2 +96,11 @@ (function (__window) {

/**
* Requires a module which is protected _against bundler minification.
*
* @param request The module path to resolve
*/
function dynamicRequire(mod, request) {
// tslint:disable-next-line: no-unsafe-any
return mod.require(request);
}
/**
* Checks whether we're in the Node.js or Browser environment

@@ -144,2 +153,39 @@ *

}
var INITIAL_TIME = Date.now();
var prevNow = 0;
var performanceFallback = {
now: function () {
var now = Date.now() - INITIAL_TIME;
if (now < prevNow) {
now = prevNow;
}
prevNow = now;
return now;
},
timeOrigin: INITIAL_TIME,
};
var crossPlatformPerformance = (function () {
if (isNodeEnv()) {
try {
var perfHooks = dynamicRequire(module, 'perf_hooks');
return perfHooks.performance;
}
catch (_) {
return performanceFallback;
}
}
if (getGlobalObject().performance) {
// Polyfill for performance.timeOrigin.
//
// While performance.timing.navigationStart is deprecated in favor of performance.timeOrigin, performance.timeOrigin
// is not as widely supported. Namely, performance.timeOrigin is undefined in Safari as of writing.
// tslint:disable-next-line:strict-type-predicates
if (performance.timeOrigin === undefined) {
// @ts-ignore
// tslint:disable-next-line:deprecation
performance.timeOrigin = performance.timing.navigationStart;
}
}
return getGlobalObject().performance || performanceFallback;
})();

@@ -146,0 +192,0 @@ // TODO: Implement different loggers for different environments

@@ -1,2 +0,2 @@

!function(o){var t={};Object.defineProperty(t,"__esModule",{value:!0});var n=function(o,t){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,t){o.__proto__=t}||function(o,t){for(var n in t)t.hasOwnProperty(n)&&(o[n]=t[n])})(o,t)};var r=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(o,t){return o.__proto__=t,o}:function(o,t){for(var n in t)o.hasOwnProperty(n)||(o[n]=t[n]);return o});!function(o){function t(t){var n=this.constructor,e=o.call(this,t)||this;return e.message=t,e.name=n.prototype.constructor.name,r(e,n.prototype),e}(function(o,t){function r(){this.constructor=o}n(o,t),o.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)})(t,o)}(Error);var e={};function i(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:e}function a(o){var t=i();if(!("console"in t))return o();var n=t.console,r={};["debug","info","warn","error","log","assert"].forEach(function(o){o in t.console&&n[o].__sentry_original__&&(r[o]=n[o],n[o]=n[o].__sentry_original__)});var e=o();return Object.keys(r).forEach(function(o){n[o]=r[o]}),e}var c=i(),s="Sentry Logger ",u=function(){function o(){this._enabled=!1}return o.prototype.disable=function(){this._enabled=!1},o.prototype.enable=function(){this._enabled=!0},o.prototype.log=function(){for(var o=[],t=0;t<arguments.length;t++)o[t]=arguments[t];this._enabled&&a(function(){c.console.log(s+"[Log]: "+o.join(" "))})},o.prototype.warn=function(){for(var o=[],t=0;t<arguments.length;t++)o[t]=arguments[t];this._enabled&&a(function(){c.console.warn(s+"[Warn]: "+o.join(" "))})},o.prototype.error=function(){for(var o=[],t=0;t<arguments.length;t++)o[t]=arguments[t];this._enabled&&a(function(){c.console.error(s+"[Error]: "+o.join(" "))})},o}();c.__SENTRY__=c.__SENTRY__||{};var _,p=c.__SENTRY__.logger||(c.__SENTRY__.logger=new u);!function(o){o.PENDING="PENDING",o.RESOLVED="RESOLVED",o.REJECTED="REJECTED"}(_||(_={}));i();var f=function(){function o(t){void 0===t&&(t={}),this.name=o.id,this._attachProps=!0,this._logErrors=!1,this._Vue=t.Vue||i().Vue,void 0!==t.logErrors&&(this._logErrors=t.logErrors),!1===t.attachProps&&(this._attachProps=!1)}return o.prototype._formatComponentName=function(o){if(o.$root===o)return"root instance";var t=o._isVue?o.$options.name||o.$options._componentTag:o.name;return(t?"component <"+t+">":"anonymous component")+(o._isVue&&o.$options.__file?" at "+o.$options.__file:"")},o.prototype.setupOnce=function(t,n){var r=this;if(this._Vue&&this._Vue.config){var e=this._Vue.config.errorHandler;this._Vue.config.errorHandler=function(t,i,a){var c,s={};c=i,"[object Object]"===Object.prototype.toString.call(c)&&(s.componentName=r._formatComponentName(i),r._attachProps&&(s.propsData=i.$options.propsData)),void 0!==a&&(s.lifecycleHook=a),n().getIntegration(o)&&setTimeout(function(){n().withScope(function(o){o.setContext("vue",s),n().captureException(t)})}),"function"==typeof e&&e.call(r._Vue,t,i,a),r._logErrors&&(r._Vue.util.warn("Error in "+a+': "'+t.toString()+'"',i),console.error(t))}}else p.error("VueIntegration is missing a Vue instance")},o.id="Vue",o}();for(var l in t.Vue=f,o.Sentry=o.Sentry||{},o.Sentry.Integrations=o.Sentry.Integrations||{},t)Object.prototype.hasOwnProperty.call(t,l)&&(o.Sentry.Integrations[l]=t[l])}(window);
!function(o){var t={};Object.defineProperty(t,"__esModule",{value:!0});var n=function(o,t){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,t){o.__proto__=t}||function(o,t){for(var n in t)t.hasOwnProperty(n)&&(o[n]=t[n])})(o,t)};var r=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(o,t){return o.__proto__=t,o}:function(o,t){for(var n in t)o.hasOwnProperty(n)||(o[n]=t[n]);return o});!function(o){function t(t){var n=this.constructor,e=o.call(this,t)||this;return e.message=t,e.name=n.prototype.constructor.name,r(e,n.prototype),e}(function(o,t){function r(){this.constructor=o}n(o,t),o.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)})(t,o)}(Error);function e(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)}var i={};function a(){return e()?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:i}function c(o){var t=a();if(!("console"in t))return o();var n=t.console,r={};["debug","info","warn","error","log","assert"].forEach(function(o){o in t.console&&n[o].__sentry_original__&&(r[o]=n[o],n[o]=n[o].__sentry_original__)});var e=o();return Object.keys(r).forEach(function(o){n[o]=r[o]}),e}var s=Date.now(),u=0,f={now:function(){var o=Date.now()-s;return o<u&&(o=u),u=o,o},timeOrigin:s},p=(function(){if(e())try{return(o=module,t="perf_hooks",o.require(t)).performance}catch(o){return f}var o,t;a().performance&&void 0===performance.timeOrigin&&(performance.timeOrigin=performance.timing.navigationStart),a().performance}(),a()),_="Sentry Logger ",l=function(){function o(){this._enabled=!1}return o.prototype.disable=function(){this._enabled=!1},o.prototype.enable=function(){this._enabled=!0},o.prototype.log=function(){for(var o=[],t=0;t<arguments.length;t++)o[t]=arguments[t];this._enabled&&c(function(){p.console.log(_+"[Log]: "+o.join(" "))})},o.prototype.warn=function(){for(var o=[],t=0;t<arguments.length;t++)o[t]=arguments[t];this._enabled&&c(function(){p.console.warn(_+"[Warn]: "+o.join(" "))})},o.prototype.error=function(){for(var o=[],t=0;t<arguments.length;t++)o[t]=arguments[t];this._enabled&&c(function(){p.console.error(_+"[Error]: "+o.join(" "))})},o}();p.__SENTRY__=p.__SENTRY__||{};var g,y=p.__SENTRY__.logger||(p.__SENTRY__.logger=new l);!function(o){o.PENDING="PENDING",o.RESOLVED="RESOLVED",o.REJECTED="REJECTED"}(g||(g={}));a();var h=function(){function o(t){void 0===t&&(t={}),this.name=o.id,this._attachProps=!0,this._logErrors=!1,this._Vue=t.Vue||a().Vue,void 0!==t.logErrors&&(this._logErrors=t.logErrors),!1===t.attachProps&&(this._attachProps=!1)}return o.prototype._formatComponentName=function(o){if(o.$root===o)return"root instance";var t=o._isVue?o.$options.name||o.$options._componentTag:o.name;return(t?"component <"+t+">":"anonymous component")+(o._isVue&&o.$options.__file?" at "+o.$options.__file:"")},o.prototype.setupOnce=function(t,n){var r=this;if(this._Vue&&this._Vue.config){var e=this._Vue.config.errorHandler;this._Vue.config.errorHandler=function(t,i,a){var c,s={};c=i,"[object Object]"===Object.prototype.toString.call(c)&&(s.componentName=r._formatComponentName(i),r._attachProps&&(s.propsData=i.$options.propsData)),void 0!==a&&(s.lifecycleHook=a),n().getIntegration(o)&&setTimeout(function(){n().withScope(function(o){o.setContext("vue",s),n().captureException(t)})}),"function"==typeof e&&e.call(r._Vue,t,i,a),r._logErrors&&(r._Vue.util.warn("Error in "+a+': "'+t.toString()+'"',i),console.error(t))}}else y.error("VueIntegration is missing a Vue instance")},o.id="Vue",o}();for(var m in t.Vue=h,o.Sentry=o.Sentry||{},o.Sentry.Integrations=o.Sentry.Integrations||{},t)Object.prototype.hasOwnProperty.call(t,m)&&(o.Sentry.Integrations[m]=t[m])}(window);
//# sourceMappingURL=vue.min.js.map
{
"name": "@sentry/integrations",
"version": "5.13.2",
"version": "5.14.0",
"description": "Pluggable integrations that can be used to enchance JS SDKs",

@@ -19,4 +19,4 @@ "repository": "git://github.com/getsentry/sentry-javascript.git",

"dependencies": {
"@sentry/types": "5.13.2",
"@sentry/utils": "5.13.2",
"@sentry/types": "5.14.0",
"@sentry/utils": "5.14.0",
"tslib": "^1.9.3"

@@ -23,0 +23,0 @@ },

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc