Move extensions to common module (#6276)

This commit is contained in:
David Perez
2025-12-17 10:19:20 -06:00
committed by GitHub
parent 7834d5bf27
commit b79aca7338
5 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
package com.bitwarden.core.util
import com.bitwarden.annotation.OmitFromCoverage
import java.io.File
/**
* A helper function for creating a file from a path.
*/
@OmitFromCoverage
fun fileOf(path: String): File = File(path)