fix(core): update

This commit is contained in:
Philipp Kunz 2022-03-14 13:38:32 +01:00
parent 5245e50f3d
commit d0e3065d12

View File

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