package.react-utils.HoneybadgerErrorBoundary.utils.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.
export var attachContext = function attachContext(notice, context) {
if (notice.context) Object.assign(notice.context, context);else notice.context = context;
};
export var getSessionReplayUrl = function getSessionReplayUrl() {
var storage = sessionStorage.getItem("neeto-replay-widget--session");
var currentTimestamp = new Date().getTime();
return storage ? "".concat(JSON.parse(storage).url, "?goto=").concat(currentTimestamp) : "";
};
//# sourceMappingURL=utils.js.map