aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PursLoader/Path.purs
diff options
context:
space:
mode:
Diffstat (limited to 'src/PursLoader/Path.purs')
-rw-r--r--src/PursLoader/Path.purs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/PursLoader/Path.purs b/src/PursLoader/Path.purs
new file mode 100644
index 0000000..98cad5a
--- /dev/null
+++ b/src/PursLoader/Path.purs
@@ -0,0 +1,14 @@
1module PursLoader.Path
2 ( relative
3 , resolve
4 , dirname
5 , joinPath
6 ) where
7
8foreign import relative :: String -> String -> String
9
10foreign import resolve :: String -> String
11
12foreign import dirname :: String -> String
13
14foreign import joinPath :: String -> String -> String