mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-05-02 18:20:46 +08:00
14 lines
350 B
TypeScript
14 lines
350 B
TypeScript
|
|
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
||
|
|
// SPDX-License-Identifier: MIT
|
||
|
|
|
||
|
|
export function extractReplayIdFromURL() {
|
||
|
|
if (typeof window === "undefined") {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
const urlParams = new URLSearchParams(window.location.search);
|
||
|
|
if (urlParams.has("replay")) {
|
||
|
|
return urlParams.get("replay");
|
||
|
|
}
|
||
|
|
return null;
|
||
|
|
}
|