From 34f946894e3e4713247c385fc29c2529ea0090b4 Mon Sep 17 00:00:00 2001 From: pushkine Date: Wed, 27 May 2020 17:14:22 +0200 Subject: [PATCH] lint --- src/compiler/compile/utils/hash.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compile/utils/hash.ts b/src/compiler/compile/utils/hash.ts index 190904cc6f..e10013aca2 100644 --- a/src/compiler/compile/utils/hash.ts +++ b/src/compiler/compile/utils/hash.ts @@ -1,6 +1,6 @@ // https://github.com/darkskyapp/string-hash/blob/master/index.js export default function hash(str: string): string { - str = str.replace(/\r/g, "") + str = str.replace(/\r/g, ""); let hash = 5381; let i = str.length;