Skip to content

Commit

Permalink
Add function getAbsolutePath
Browse files Browse the repository at this point in the history
  • Loading branch information
voidvoxel committed May 8, 2024
1 parent b5a4eed commit efc3fe7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/functions/getAbsolutePath.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import pathabs from "pathabs";


/**
* Join a list of paths and then resolve the resulting path.
*
* @public
* @since v0.1.0
* @version 1.0.0-alpha
*
* @param {...string} paths
* A list of paths to join into an absolute path.
* @returns {string}
* The resolved path.
*/
export default function getAbsolutePath (
...paths
) {
return pathabs(...paths);
}
1 change: 1 addition & 0 deletions src/index.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as getAbsolutePath } from "./functions/getAbsolutePath.mjs";

0 comments on commit efc3fe7

Please sign in to comment.