Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
quiz1 /
node_modules /
workbox-routing /
[ HOME SHELL ]
Name
Size
Permission
Action
build
[ DIR ]
dr-xr-xr-x
src
[ DIR ]
dr-xr-xr-x
utils
[ DIR ]
dr-xr-xr-x
LICENSE
1.03
KB
-rw-rw-rw-
NavigationRoute.d.ts
2.59
KB
-rw-rw-rw-
NavigationRoute.js
4.47
KB
-rw-rw-rw-
NavigationRoute.mjs
37
B
-rw-rw-rw-
README.md
116
B
-rw-rw-rw-
RegExpRoute.d.ts
1.27
KB
-rw-rw-rw-
RegExpRoute.js
2.99
KB
-rw-rw-rw-
RegExpRoute.mjs
33
B
-rw-rw-rw-
Route.d.ts
1.42
KB
-rw-rw-rw-
Route.js
2.13
KB
-rw-rw-rw-
Route.mjs
27
B
-rw-rw-rw-
Router.d.ts
5.02
KB
-rw-rw-rw-
Router.js
16.35
KB
-rw-rw-rw-
Router.mjs
28
B
-rw-rw-rw-
_types.d.ts
2.14
KB
-rw-rw-rw-
_types.js
2.68
KB
-rw-rw-rw-
_types.mjs
28
B
-rw-rw-rw-
_version.d.ts
0
B
-rw-rw-rw-
_version.js
92
B
-rw-rw-rw-
_version.mjs
71
B
-rw-rw-rw-
index.d.ts
571
B
-rw-rw-rw-
index.js
696
B
-rw-rw-rw-
index.mjs
27
B
-rw-rw-rw-
package.json
740
B
-rw-rw-rw-
registerRoute.d.ts
1.09
KB
-rw-rw-rw-
registerRoute.js
3.93
KB
-rw-rw-rw-
registerRoute.mjs
35
B
-rw-rw-rw-
setCatchHandler.d.ts
466
B
-rw-rw-rw-
setCatchHandler.js
747
B
-rw-rw-rw-
setCatchHandler.mjs
37
B
-rw-rw-rw-
setDefaultHandler.d.ts
567
B
-rw-rw-rw-
setDefaultHandler.js
850
B
-rw-rw-rw-
setDefaultHandler.mjs
39
B
-rw-rw-rw-
tsconfig.json
232
B
-rw-rw-rw-
tsconfig.tsbuildinfo
32.06
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RegExpRoute.d.ts
import { RouteHandler } from 'workbox-core/types.js'; import { HTTPMethod } from './utils/constants.js'; import { Route } from './Route.js'; import './_version.js'; /** * RegExpRoute makes it easy to create a regular expression based * {@link workbox-routing.Route}. * * For same-origin requests the RegExp only needs to match part of the URL. For * requests against third-party servers, you must define a RegExp that matches * the start of the URL. * * @memberof workbox-routing * @extends workbox-routing.Route */ declare class RegExpRoute extends Route { /** * If the regular expression contains * [capture groups]{@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp#grouping-back-references}, * the captured values will be passed to the * {@link workbox-routing~handlerCallback} `params` * argument. * * @param {RegExp} regExp The regular expression to match against URLs. * @param {workbox-routing~handlerCallback} handler A callback * function that returns a Promise resulting in a Response. * @param {string} [method='GET'] The HTTP method to match the Route * against. */ constructor(regExp: RegExp, handler: RouteHandler, method?: HTTPMethod); } export { RegExpRoute };
Close