relation.ts 410 B

12345678910
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. /* eslint-disable @typescript-eslint/naming-convention*/
  6. export const BatchFunctionIDPrefix = 'BatchFunction_';
  7. export const getBatchFunctionID = (batchID: string) => BatchFunctionIDPrefix + batchID;
  8. export const getBatchID = (batchFunctionID: string) =>
  9. batchFunctionID.replace(BatchFunctionIDPrefix, '');