diff --git a/src/utils/utils.ts b/src/utils/utils.ts index 1c2e2b4..f39e7d1 100644 --- a/src/utils/utils.ts +++ b/src/utils/utils.ts @@ -8,10 +8,6 @@ import { Vault, } from 'obsidian'; -export function delay(ms: number): Promise { - return new Promise((resolve) => setTimeout(resolve, ms)); -} - export function escape_RegExp(str: string): string { return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string }