Commit f9d43ac0 by Zong Committed by GitHub

feat(textSplitter): typo (#2138)

parent abcf48d5
...@@ -144,7 +144,7 @@ const commonSplit = (props: SplitProps): SplitResponse => { ...@@ -144,7 +144,7 @@ const commonSplit = (props: SplitProps): SplitResponse => {
]; ];
} }
const isCustomSteep = checkIsCustomStep(step); const isCustomStep = checkIsCustomStep(step);
const isMarkdownSplit = checkIsMarkdownSplit(step); const isMarkdownSplit = checkIsMarkdownSplit(step);
const independentChunk = checkIndependentChunk(step); const independentChunk = checkIndependentChunk(step);
...@@ -154,7 +154,7 @@ const commonSplit = (props: SplitProps): SplitResponse => { ...@@ -154,7 +154,7 @@ const commonSplit = (props: SplitProps): SplitResponse => {
.replace( .replace(
reg, reg,
(() => { (() => {
if (isCustomSteep) return splitMarker; if (isCustomStep) return splitMarker;
if (independentChunk) return `${splitMarker}$1`; if (independentChunk) return `${splitMarker}$1`;
return `$1${splitMarker}`; return `$1${splitMarker}`;
})() })()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment