/opt/canhelp/node_modules/next/dist/build/static-paths
NameSizeModeActions
app.d.ts63420644editdlrm
app.js324890644editdlrm
app.js.map497900644editdlrm
pages.d.ts3910644editdlrm
pages.js92250644editdlrm
pages.js.map134680644editdlrm
types.d.ts13180644editdlrm
types.js1150644editdlrm
types.js.map670644editdlrm
utils.d.ts4990644editdlrm
utils.js10270644editdlrm
utils.js.map13350644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/build/static-paths/utils.js (1027B)
/** * Encodes a parameter value using the provided encoder. * * @param value - The value to encode. * @param encoder - The encoder to use. * @returns The encoded value. */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); 0 && (module.exports = { encodeParam: null, normalizePathname: null }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { encodeParam: function() { return encodeParam; }, normalizePathname: function() { return normalizePathname; } }); function encodeParam(value, encoder) { let replaceValue; if (Array.isArray(value)) { replaceValue = value.map(encoder).join('/'); } else { replaceValue = encoder(value); } return replaceValue; } function normalizePathname(pathname) { return pathname.replace(/\\/g, '/').replace(/(?!^)\/$/, ''); } //# sourceMappingURL=utils.js.map