fix(core): update

This commit is contained in:
2024-03-01 23:34:43 +01:00
parent 2c29ae3bf0
commit 6f2cedc1dd
7 changed files with 437 additions and 400 deletions

View File

@@ -31,7 +31,7 @@ export const standard = (stringArg: string, options?: INormalizeOptions): string
}
if (!options || options.normalizeNewline) {
result = plugins.normalizeNewline(result); // fix newlines
result = result.replace(/\r\n/g, '\n'); // fix newlines
}
if (!options || options.replaceTabs) {