added 3.0.1

This commit is contained in:
vel 2022-03-03 18:59:14 -08:00
parent 6e2b6ca024
commit 751245a2f0
Signed by: velvox
GPG Key ID: 1C8200C1D689CEF5
1 changed files with 136 additions and 136 deletions

View File

@ -1,4 +1,4 @@
(function() {
(function () {
'use strict';
function captureEvents(events) {
@ -116,8 +116,8 @@
function getDeepMatches(object, pred, excludeKeys) {
const keys = typeof object === 'object' && object ? Object.keys(object) : [];
return keys.length ?
keys
return keys.length
? keys
.filter((key) => !excludeKeys.includes(key))
.reduce((r, key) => {
const target = object[key];
@ -127,13 +127,13 @@
} else {
return [...r, ...getDeepMatches(target, pred, excludeKeys)]
}
}, []) :
[]
}, [] )
: []
}
const importPath = /*@__PURE__*/ JSON.parse('"../background.js"');
const delayLength = /*@__PURE__*/ JSON.parse('0');
const excludedPaths = /*@__PURE__*/ JSON.parse('["extension"]');
const importPath = /*@__PURE__*/JSON.parse('"../background.js"');
const delayLength = /*@__PURE__*/JSON.parse('0');
const excludedPaths = /*@__PURE__*/JSON.parse('["extension"]');
const events = getDeepMatches(
chrome,