Refactor out of utils

This commit is contained in:
Saoud Rizwan
2024-09-24 11:45:12 -04:00
parent 7c21a4c833
commit 40f7942801
8 changed files with 7 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
import * as path from "path"
import * as os from "os"
import * as vscode from "vscode"
import { arePathsEqual } from "../../utils/path-helpers"
import { arePathsEqual } from "../../utils/path"
export async function openImage(dataUri: string) {
const matches = dataUri.match(/^data:image\/([a-zA-Z]+);base64,(.+)$/)