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 /
expect /
build /
[ HOME SHELL ]
Name
Size
Permission
Action
asymmetricMatchers.d.ts
3.27
KB
-rw-rw-rw-
asymmetricMatchers.js
9.95
KB
-rw-rw-rw-
extractExpectedAssertionsError...
390
B
-rw-rw-rw-
extractExpectedAssertionsError...
2.55
KB
-rw-rw-rw-
index.d.ts
548
B
-rw-rw-rw-
index.js
13.89
KB
-rw-rw-rw-
jasmineUtils.d.ts
579
B
-rw-rw-rw-
jasmineUtils.js
7.27
KB
-rw-rw-rw-
jestMatchersObject.d.ts
798
B
-rw-rw-rw-
jestMatchersObject.js
3.23
KB
-rw-rw-rw-
matchers.d.ts
325
B
-rw-rw-rw-
matchers.js
37.57
KB
-rw-rw-rw-
print.d.ts
1.1
KB
-rw-rw-rw-
print.js
5.13
KB
-rw-rw-rw-
spyMatchers.d.ts
328
B
-rw-rw-rw-
spyMatchers.js
39.16
KB
-rw-rw-rw-
toThrowMatchers.d.ts
449
B
-rw-rw-rw-
toThrowMatchers.js
12.9
KB
-rw-rw-rw-
types.d.ts
12.82
KB
-rw-rw-rw-
types.js
74
B
-rw-rw-rw-
utils.d.ts
1.41
KB
-rw-rw-rw-
utils.js
12.16
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jestMatchersObject.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); exports.setState = exports.setMatchers = exports.getState = exports.getMatchers = exports.INTERNAL_MATCHER_FLAG = void 0; var _asymmetricMatchers = require('./asymmetricMatchers'); var global = (function () { if (typeof globalThis !== 'undefined') { return globalThis; } else if (typeof global !== 'undefined') { return global; } else if (typeof self !== 'undefined') { return self; } else if (typeof window !== 'undefined') { return window; } else { return Function('return this')(); } })(); var Symbol = global['jest-symbol-do-not-touch'] || global.Symbol; // Global matchers object holds the list of available matchers and // the state, that can hold matcher specific values that change over time. const JEST_MATCHERS_OBJECT = Symbol.for('$$jest-matchers-object'); // Notes a built-in/internal Jest matcher. // Jest may override the stack trace of Errors thrown by internal matchers. const INTERNAL_MATCHER_FLAG = Symbol.for('$$jest-internal-matcher'); exports.INTERNAL_MATCHER_FLAG = INTERNAL_MATCHER_FLAG; if (!global.hasOwnProperty(JEST_MATCHERS_OBJECT)) { const defaultState = { assertionCalls: 0, expectedAssertionsNumber: null, isExpectingAssertions: false, suppressedErrors: [] // errors that are not thrown immediately. }; Object.defineProperty(global, JEST_MATCHERS_OBJECT, { value: { matchers: Object.create(null), state: defaultState } }); } const getState = () => global[JEST_MATCHERS_OBJECT].state; exports.getState = getState; const setState = state => { Object.assign(global[JEST_MATCHERS_OBJECT].state, state); }; exports.setState = setState; const getMatchers = () => global[JEST_MATCHERS_OBJECT].matchers; exports.getMatchers = getMatchers; const setMatchers = (matchers, isInternal, expect) => { Object.keys(matchers).forEach(key => { const matcher = matchers[key]; Object.defineProperty(matcher, INTERNAL_MATCHER_FLAG, { value: isInternal }); if (!isInternal) { // expect is defined class CustomMatcher extends _asymmetricMatchers.AsymmetricMatcher { constructor(inverse = false, ...sample) { super(sample, inverse); } asymmetricMatch(other) { const {pass} = matcher.call( this.getMatcherContext(), other, ...this.sample ); return this.inverse ? !pass : pass; } toString() { return `${this.inverse ? 'not.' : ''}${key}`; } getExpectedType() { return 'any'; } toAsymmetricMatcher() { return `${this.toString()}<${this.sample.map(String).join(', ')}>`; } } Object.defineProperty(expect, key, { configurable: true, enumerable: true, value: (...sample) => new CustomMatcher(false, ...sample), writable: true }); Object.defineProperty(expect.not, key, { configurable: true, enumerable: true, value: (...sample) => new CustomMatcher(true, ...sample), writable: true }); } }); Object.assign(global[JEST_MATCHERS_OBJECT].matchers, matchers); }; exports.setMatchers = setMatchers;
Close