mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-19 04:14:46 +08:00
11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
export function extractReplayIdFromSearchParams(params: string) {
|
|
const urlParams = new URLSearchParams(params);
|
|
if (urlParams.has("replay")) {
|
|
return urlParams.get("replay");
|
|
}
|
|
return null;
|
|
}
|