/
home
/
techb158
/
balavpn.abdallabala.com
/
.next
/
standalone
/
node_modules
/
next
/
dist
/
shared
/
lib
/
/home/techb158/balavpn.abdallabala.com/.next/standalone/node_modules/next/dist/shared/lib
mkdir
upload
Name
Size
Mode
Actions
errors/
-
0777
rm
i18n/
-
0777
rm
isomorphic/
-
0777
rm
lazy-dynamic/
-
0777
rm
page-path/
-
0777
rm
router/
-
0777
rm
segment-cache/
-
0777
rm
turbopack/
-
0777
rm
utils/
-
0777
rm
amp-context.shared-runtime.js
592
0666
edit
dl
rm
amp-mode.js
419
0666
edit
dl
rm
app-router-context.shared-runtime.js
1686
0666
edit
dl
rm
bloom-filter.js
2965
0666
edit
dl
rm
canary-only.js
1282
0666
edit
dl
rm
constants.js
14934
0666
edit
dl
rm
deep-freeze.js
868
0666
edit
dl
rm
dset.js
1914
0666
edit
dl
rm
encode-uri-path.js
362
0666
edit
dl
rm
error-source.js
858
0666
edit
dl
rm
escape-regexp.js
694
0666
edit
dl
rm
format-webpack-messages.js
8498
0666
edit
dl
rm
get-hostname.js
679
0666
edit
dl
rm
get-rspack.js
2585
0666
edit
dl
rm
get-webpack-bundler.js
632
0666
edit
dl
rm
hash.js
1326
0666
edit
dl
rm
head-manager-context.shared-runtime.js
616
0666
edit
dl
rm
head.js
7006
0666
edit
dl
rm
hooks-client-context.shared-runtime.js
1108
0666
edit
dl
rm
html-context.shared-runtime.js
1149
0666
edit
dl
rm
htmlescape.js
1417
0666
edit
dl
rm
image-blur-svg.js
1495
0666
edit
dl
rm
image-config-context.shared-runtime.js
693
0666
edit
dl
rm
image-config.js
1428
0666
edit
dl
rm
invariant-error.js
501
0666
edit
dl
rm
is-internal.js
1298
0666
edit
dl
rm
is-plain-object.js
1180
0666
edit
dl
rm
is-thenable.js
537
0666
edit
dl
rm
loadable-context.shared-runtime.js
613
0666
edit
dl
rm
loadable.shared-runtime.js
8458
0666
edit
dl
rm
magic-identifier.js
3654
0666
edit
dl
rm
match-local-pattern.js
1301
0666
edit
dl
rm
match-remote-pattern.js
1931
0666
edit
dl
rm
mitt.js
2247
0666
edit
dl
rm
modern-browserslist-target.js
652
0666
edit
dl
rm
no-fallback-error.external.js
408
0666
edit
dl
rm
normalized-asset-prefix.js
961
0666
edit
dl
rm
promise-with-resolvers.js
606
0666
edit
dl
rm
router-context.shared-runtime.js
587
0666
edit
dl
rm
runtime-config.external.js
722
0666
edit
dl
rm
segment.js
1562
0666
edit
dl
rm
server-inserted-html.shared-runtime.js
1171
0666
edit
dl
rm
server-reference-info.js
1601
0666
edit
dl
rm
side-effect.js
2749
0666
edit
dl
rm
utils.js
6289
0666
edit
dl
rm
zod.js
3359
0666
edit
dl
rm
Edit:
/home/techb158/balavpn.abdallabala.com/.next/standalone/node_modules/next/dist/shared/lib/utils.js
(6289B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); 0 && (module.exports = { DecodeError: null, MiddlewareNotFoundError: null, MissingStaticPage: null, NormalizeError: null, PageNotFoundError: null, SP: null, ST: null, WEB_VITALS: null, execOnce: null, getDisplayName: null, getLocationOrigin: null, getURL: null, isAbsoluteUrl: null, isResSent: null, loadGetInitialProps: null, normalizeRepeatedSlashes: null, stringifyError: null }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { DecodeError: function() { return DecodeError; }, MiddlewareNotFoundError: function() { return MiddlewareNotFoundError; }, MissingStaticPage: function() { return MissingStaticPage; }, NormalizeError: function() { return NormalizeError; }, PageNotFoundError: function() { return PageNotFoundError; }, SP: function() { return SP; }, ST: function() { return ST; }, WEB_VITALS: function() { return WEB_VITALS; }, execOnce: function() { return execOnce; }, getDisplayName: function() { return getDisplayName; }, getLocationOrigin: function() { return getLocationOrigin; }, getURL: function() { return getURL; }, isAbsoluteUrl: function() { return isAbsoluteUrl; }, isResSent: function() { return isResSent; }, loadGetInitialProps: function() { return loadGetInitialProps; }, normalizeRepeatedSlashes: function() { return normalizeRepeatedSlashes; }, stringifyError: function() { return stringifyError; } }); const WEB_VITALS = [ 'CLS', 'FCP', 'FID', 'INP', 'LCP', 'TTFB' ]; function execOnce(fn) { let used = false; let result; return function() { for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){ args[_key] = arguments[_key]; } if (!used) { used = true; result = fn(...args); } return result; }; } // Scheme: https://tools.ietf.org/html/rfc3986#section-3.1 // Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3 const ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\d+\-.]*?:/; const isAbsoluteUrl = (url)=>ABSOLUTE_URL_REGEX.test(url); function getLocationOrigin() { const { protocol, hostname, port } = window.location; return protocol + "//" + hostname + (port ? ':' + port : ''); } function getURL() { const { href } = window.location; const origin = getLocationOrigin(); return href.substring(origin.length); } function getDisplayName(Component) { return typeof Component === 'string' ? Component : Component.displayName || Component.name || 'Unknown'; } function isResSent(res) { return res.finished || res.headersSent; } function normalizeRepeatedSlashes(url) { const urlParts = url.split('?'); const urlNoQuery = urlParts[0]; return urlNoQuery// first we replace any non-encoded backslashes with forward // then normalize repeated forward slashes .replace(/\\/g, '/').replace(/\/\/+/g, '/') + (urlParts[1] ? "?" + urlParts.slice(1).join('?') : ''); } async function loadGetInitialProps(App, ctx) { if (process.env.NODE_ENV !== 'production') { var _App_prototype; if ((_App_prototype = App.prototype) == null ? void 0 : _App_prototype.getInitialProps) { const message = '"' + getDisplayName(App) + '.getInitialProps()" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.'; throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { value: "E394", enumerable: false, configurable: true }); } } // when called from _app `ctx` is nested in `ctx` const res = ctx.res || ctx.ctx && ctx.ctx.res; if (!App.getInitialProps) { if (ctx.ctx && ctx.Component) { // @ts-ignore pageProps default return { pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx) }; } return {}; } const props = await App.getInitialProps(ctx); if (res && isResSent(res)) { return props; } if (!props) { const message = '"' + getDisplayName(App) + '.getInitialProps()" should resolve to an object. But found "' + props + '" instead.'; throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { value: "E394", enumerable: false, configurable: true }); } if (process.env.NODE_ENV !== 'production') { if (Object.keys(props).length === 0 && !ctx.ctx) { console.warn("" + getDisplayName(App) + " returned an empty object from `getInitialProps`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps"); } } return props; } const SP = typeof performance !== 'undefined'; const ST = SP && [ 'mark', 'measure', 'getEntriesByName' ].every((method)=>typeof performance[method] === 'function'); class DecodeError extends Error { } class NormalizeError extends Error { } class PageNotFoundError extends Error { constructor(page){ super(); this.code = 'ENOENT'; this.name = 'PageNotFoundError'; this.message = "Cannot find module for page: " + page; } } class MissingStaticPage extends Error { constructor(page, message){ super(); this.message = "Failed to load static file for page: " + page + " " + message; } } class MiddlewareNotFoundError extends Error { constructor(){ super(); this.code = 'ENOENT'; this.message = "Cannot find the middleware module"; } } function stringifyError(error) { return JSON.stringify({ message: error.message, stack: error.stack }); } //# sourceMappingURL=utils.js.map
Save
cmd:
run