mirror of https://github.com/jkjoy/sunpeiwen.git
10 lines
276 B
JavaScript
10 lines
276 B
JavaScript
|
const normalizeValue = (value) => String(value)
|
||
|
.replace(/\r|\n/g, (match, i, str) => {
|
||
|
if ((match === "\r" && str[i + 1] !== "\n")
|
||
|
|| (match === "\n" && str[i - 1] !== "\r")) {
|
||
|
return "\r\n";
|
||
|
}
|
||
|
return match;
|
||
|
});
|
||
|
export default normalizeValue;
|