fix(core): update

This commit is contained in:
2022-03-14 15:15:23 +01:00
parent e23624a93f
commit 97ae2d87b1
2 changed files with 23 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export const type = (pathStringArg: string): TPathType => {
/**
* gets the dirname from import.meta.url
*/
export const getDirnameFromImportMetaUrl = (importMetaUrlArg: string) => {
export const dirnameFromImportMetaUrl = (importMetaUrlArg: string) => {
return plugins.path.dirname(plugins.url.fileURLToPath(importMetaUrlArg));
}