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-core /
[ HOME SHELL ]
Name
Size
Permission
Action
_private
[ DIR ]
dr-xr-xr-x
build
[ DIR ]
dr-xr-xr-x
models
[ DIR ]
dr-xr-xr-x
src
[ DIR ]
dr-xr-xr-x
utils
[ DIR ]
dr-xr-xr-x
LICENSE
1.03
KB
-rw-rw-rw-
README.md
113
B
-rw-rw-rw-
_private.d.ts
1.16
KB
-rw-rw-rw-
_private.js
1.4
KB
-rw-rw-rw-
_private.mjs
30
B
-rw-rw-rw-
_version.d.ts
0
B
-rw-rw-rw-
_version.js
89
B
-rw-rw-rw-
_version.mjs
68
B
-rw-rw-rw-
cacheNames.d.ts
819
B
-rw-rw-rw-
cacheNames.js
1.24
KB
-rw-rw-rw-
cacheNames.mjs
32
B
-rw-rw-rw-
clientsClaim.d.ts
268
B
-rw-rw-rw-
clientsClaim.js
506
B
-rw-rw-rw-
clientsClaim.mjs
34
B
-rw-rw-rw-
copyResponse.d.ts
1.02
KB
-rw-rw-rw-
copyResponse.js
2.4
KB
-rw-rw-rw-
copyResponse.mjs
34
B
-rw-rw-rw-
index.d.ts
753
B
-rw-rw-rw-
index.js
935
B
-rw-rw-rw-
index.mjs
27
B
-rw-rw-rw-
package.json
668
B
-rw-rw-rw-
registerQuotaErrorCallback.d.t...
305
B
-rw-rw-rw-
registerQuotaErrorCallback.js
1.09
KB
-rw-rw-rw-
registerQuotaErrorCallback.mjs
48
B
-rw-rw-rw-
setCacheNameDetails.d.ts
916
B
-rw-rw-rw-
setCacheNameDetails.js
2.23
KB
-rw-rw-rw-
setCacheNameDetails.mjs
41
B
-rw-rw-rw-
skipWaiting.d.ts
264
B
-rw-rw-rw-
skipWaiting.js
873
B
-rw-rw-rw-
skipWaiting.mjs
33
B
-rw-rw-rw-
tsconfig.json
184
B
-rw-rw-rw-
tsconfig.tsbuildinfo
34.7
KB
-rw-rw-rw-
types.d.ts
7.83
KB
-rw-rw-rw-
types.js
206
B
-rw-rw-rw-
types.mjs
27
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : setCacheNameDetails.js
/* Copyright 2019 Google LLC Use of this source code is governed by an MIT-style license that can be found in the LICENSE file or at https://opensource.org/licenses/MIT. */ import { assert } from './_private/assert.js'; import { cacheNames } from './_private/cacheNames.js'; import { WorkboxError } from './_private/WorkboxError.js'; import './_version.js'; /** * Modifies the default cache names used by the Workbox packages. * Cache names are generated as `<prefix>-<Cache Name>-<suffix>`. * * @param {Object} details * @param {Object} [details.prefix] The string to add to the beginning of * the precache and runtime cache names. * @param {Object} [details.suffix] The string to add to the end of * the precache and runtime cache names. * @param {Object} [details.precache] The cache name to use for precache * caching. * @param {Object} [details.runtime] The cache name to use for runtime caching. * @param {Object} [details.googleAnalytics] The cache name to use for * `workbox-google-analytics` caching. * * @memberof workbox-core */ function setCacheNameDetails(details) { if (process.env.NODE_ENV !== 'production') { Object.keys(details).forEach((key) => { assert.isType(details[key], 'string', { moduleName: 'workbox-core', funcName: 'setCacheNameDetails', paramName: `details.${key}`, }); }); if ('precache' in details && details['precache'].length === 0) { throw new WorkboxError('invalid-cache-name', { cacheNameId: 'precache', value: details['precache'], }); } if ('runtime' in details && details['runtime'].length === 0) { throw new WorkboxError('invalid-cache-name', { cacheNameId: 'runtime', value: details['runtime'], }); } if ('googleAnalytics' in details && details['googleAnalytics'].length === 0) { throw new WorkboxError('invalid-cache-name', { cacheNameId: 'googleAnalytics', value: details['googleAnalytics'], }); } } cacheNames.updateDetails(details); } export { setCacheNameDetails };
Close