astock-agent/frontend/node_modules/next/dist/esm/shared/lib/encode-uri-path.js
2026-04-07 20:51:00 +08:00

5 lines
154 B
JavaScript

export function encodeURIPath(file) {
return file.split("/").map((p)=>encodeURIComponent(p)).join("/");
}
//# sourceMappingURL=encode-uri-path.js.map