/
home
/
techb158
/
balavpn.abdallabala.com
/
.next
/
standalone
/
node_modules
/
next
/
dist
/
lib
/
/home/techb158/balavpn.abdallabala.com/.next/standalone/node_modules/next/dist/lib
mkdir
upload
Name
Size
Mode
Actions
framework/
-
0777
rm
fs/
-
0777
rm
helpers/
-
0777
rm
metadata/
-
0777
rm
typescript/
-
0777
rm
batcher.js
2166
0666
edit
dl
rm
build-custom-route.js
1183
0666
edit
dl
rm
client-and-server-references.js
1293
0666
edit
dl
rm
coalesced-function.js
1088
0666
edit
dl
rm
compile-error.js
292
0666
edit
dl
rm
constants.js
14710
0666
edit
dl
rm
create-client-router-filter.js
2487
0666
edit
dl
rm
default-transpiled-packages.json
10
0666
edit
dl
rm
detached-promise.js
891
0666
edit
dl
rm
detect-typo.js
1521
0666
edit
dl
rm
download-swc.js
7213
0666
edit
dl
rm
error-telemetry-utils.js
1445
0666
edit
dl
rm
fallback.js
3319
0666
edit
dl
rm
fatal-error.js
284
0666
edit
dl
rm
file-exists.js
1423
0666
edit
dl
rm
find-config.js
3464
0666
edit
dl
rm
find-pages-dir.js
1560
0666
edit
dl
rm
find-root.js
4597
0666
edit
dl
rm
format-dynamic-import-path.js
784
0666
edit
dl
rm
format-server-error.js
2688
0666
edit
dl
rm
generate-interception-routes-rewrites.js
3287
0666
edit
dl
rm
get-network-host.js
1423
0666
edit
dl
rm
get-project-dir.js
1904
0666
edit
dl
rm
has-necessary-dependencies.js
1638
0666
edit
dl
rm
install-dependencies.js
1356
0666
edit
dl
rm
interop-default.js
325
0666
edit
dl
rm
is-api-route.js
373
0666
edit
dl
rm
is-app-page-route.js
334
0666
edit
dl
rm
is-app-route-route.js
339
0666
edit
dl
rm
is-edge-runtime.js
445
0666
edit
dl
rm
is-error.js
2389
0666
edit
dl
rm
is-internal-component.js
881
0666
edit
dl
rm
is-serializable-props.js
4694
0666
edit
dl
rm
known-edge-safe-packages.json
18
0666
edit
dl
rm
load-custom-routes.js
22871
0666
edit
dl
rm
multi-file-writer.js
2573
0666
edit
dl
rm
needs-experimental-react.js
484
0666
edit
dl
rm
non-nullable.js
334
0666
edit
dl
rm
normalize-path.js
549
0666
edit
dl
rm
oxford-comma-list.js
451
0666
edit
dl
rm
page-types.js
431
0666
edit
dl
rm
patch-incorrect-lockfile.js
7036
0666
edit
dl
rm
pick.js
368
0666
edit
dl
rm
picocolors.js
5375
0666
edit
dl
rm
pretty-bytes.js
3056
0666
edit
dl
rm
realpath.js
572
0666
edit
dl
rm
recursive-delete.js
2642
0666
edit
dl
rm
recursive-readdir.js
5464
0666
edit
dl
rm
redirect-status.js
1285
0666
edit
dl
rm
resolve-from.js
2144
0666
edit
dl
rm
route-pattern-normalizer.js
4502
0666
edit
dl
rm
scheduler.js
1863
0666
edit
dl
rm
semver-noop.js
471
0666
edit
dl
rm
server-external-packages.json
1281
0666
edit
dl
rm
static-env.js
2666
0666
edit
dl
rm
try-to-parse-path.js
2542
0666
edit
dl
rm
turbopack-warning.js
8777
0666
edit
dl
rm
url.js
1982
0666
edit
dl
rm
verify-partytown-setup.js
4918
0666
edit
dl
rm
verify-typescript-setup.js
7750
0666
edit
dl
rm
wait.js
438
0666
edit
dl
rm
with-promise-cache.js
594
0666
edit
dl
rm
Edit:
/home/techb158/balavpn.abdallabala.com/.next/standalone/node_modules/next/dist/lib/pretty-bytes.js
(3056B)
/* MIT License Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return prettyBytes; } }); const UNITS = [ 'B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB' ]; /* Formats the given number using `Number#toLocaleString`. - If locale is a string, the value is expected to be a locale-key (for example: `de`). - If locale is true, the system default locale is used for translation. - If no value for locale is specified, the number is returned unmodified. */ const toLocaleString = (number, locale)=>{ let result = number; if (typeof locale === 'string') { result = number.toLocaleString(locale); } else if (locale === true) { result = number.toLocaleString(); } return result; }; function prettyBytes(number, options) { if (!Number.isFinite(number)) { throw Object.defineProperty(new TypeError(`Expected a finite number, got ${typeof number}: ${number}`), "__NEXT_ERROR_CODE", { value: "E572", enumerable: false, configurable: true }); } options = Object.assign({}, options); if (options.signed && number === 0) { return ' 0 B'; } const isNegative = number < 0; const prefix = isNegative ? '-' : options.signed ? '+' : ''; if (isNegative) { number = -number; } if (number < 1) { const numberString = toLocaleString(number, options.locale); return prefix + numberString + ' B'; } const exponent = Math.min(Math.floor(Math.log10(number) / 3), UNITS.length - 1); number = Number((number / Math.pow(1000, exponent)).toPrecision(3)); const numberString = toLocaleString(number, options.locale); const unit = UNITS[exponent]; return prefix + numberString + ' ' + unit; } //# sourceMappingURL=pretty-bytes.js.map
Save
cmd:
run