UNPKG

@lpjs/kuririn

Version:

前端业务跟踪错误上报注入

14 lines 308 B
/** * 添加额外 history state 事件 * @param type */ export default function resetHistory(type) { let orig = history[type]; return function () { let rv = orig.apply(this, arguments); let e: any = new Event(type); e.arguments = arguments; window.dispatchEvent(e); return rv; }; }