/home/techb158/balavpn.abdallabala.com/.next/standalone/node_modules/next/dist/shared/lib
NameSizeModeActions
errors/-0777rm
i18n/-0777rm
isomorphic/-0777rm
lazy-dynamic/-0777rm
page-path/-0777rm
router/-0777rm
segment-cache/-0777rm
turbopack/-0777rm
utils/-0777rm
amp-context.shared-runtime.js5920666editdlrm
amp-mode.js4190666editdlrm
app-router-context.shared-runtime.js16860666editdlrm
bloom-filter.js29650666editdlrm
canary-only.js12820666editdlrm
constants.js149340666editdlrm
deep-freeze.js8680666editdlrm
dset.js19140666editdlrm
encode-uri-path.js3620666editdlrm
error-source.js8580666editdlrm
escape-regexp.js6940666editdlrm
format-webpack-messages.js84980666editdlrm
get-hostname.js6790666editdlrm
get-rspack.js25850666editdlrm
get-webpack-bundler.js6320666editdlrm
hash.js13260666editdlrm
head-manager-context.shared-runtime.js6160666editdlrm
head.js70060666editdlrm
hooks-client-context.shared-runtime.js11080666editdlrm
html-context.shared-runtime.js11490666editdlrm
htmlescape.js14170666editdlrm
image-blur-svg.js14950666editdlrm
image-config-context.shared-runtime.js6930666editdlrm
image-config.js14280666editdlrm
invariant-error.js5010666editdlrm
is-internal.js12980666editdlrm
is-plain-object.js11800666editdlrm
is-thenable.js5370666editdlrm
loadable-context.shared-runtime.js6130666editdlrm
loadable.shared-runtime.js84580666editdlrm
magic-identifier.js36540666editdlrm
match-local-pattern.js13010666editdlrm
match-remote-pattern.js19310666editdlrm
mitt.js22470666editdlrm
modern-browserslist-target.js6520666editdlrm
no-fallback-error.external.js4080666editdlrm
normalized-asset-prefix.js9610666editdlrm
promise-with-resolvers.js6060666editdlrm
router-context.shared-runtime.js5870666editdlrm
runtime-config.external.js7220666editdlrm
segment.js15620666editdlrm
server-inserted-html.shared-runtime.js11710666editdlrm
server-reference-info.js16010666editdlrm
side-effect.js27490666editdlrm
utils.js62890666editdlrm
zod.js33590666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/.next/standalone/node_modules/next/dist/shared/lib/dset.js (1914B)
/* The MIT License (MIT) Copyright (c) Luke Edwards (lukeed.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. */ // This file is based on https://github.com/lukeed/dset/blob/v3.1.3/src/index.js // It's been edited for the needs of this script // See the LICENSE at the top of the file "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "dset", { enumerable: true, get: function() { return dset; } }); function dset(obj, keys, val) { keys.split && (keys = keys.split('.')); var i = 0, l = keys.length, t = obj, x, k; while(i < l){ k = keys[i++]; if (k === '__proto__' || k === 'constructor' || k === 'prototype') break; t = t[k] = i === l ? val : typeof (x = t[k]) === typeof keys ? x : keys[i] * 0 !== 0 || !!~('' + keys[i]).indexOf('.') ? {} : []; } } //# sourceMappingURL=dset.js.map