package.cjs.react-utils.HoneybadgerErrorBoundary.constants.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.IGNORABLE_ERROR_NAMES_REGEX = exports.IGNORABLE_ERRORS_REGEX = void 0;
var IGNORABLE_ERRORS_REGEX = /(window\.requestAnimationFrame|ResizeObserver|ChunkLoadError|window\.webkit\.messageHandlers|Request aborted|Network Error|Cannot redefine property: googletag|Failed to execute 'removeChild' on 'Node')/;
exports.IGNORABLE_ERRORS_REGEX = IGNORABLE_ERRORS_REGEX;
var IGNORABLE_ERROR_NAMES_REGEX = /(ChunkLoadError)/;
exports.IGNORABLE_ERROR_NAMES_REGEX = IGNORABLE_ERROR_NAMES_REGEX;
//# sourceMappingURL=constants.js.map