aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PursLoader/Loader.js
blob: 98459b69e5247a3c70f845d04903e329fc6e280e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict'

// module PursLoader.Loader

var path = require('path');

var cwd = process.cwd();

function relative(from) {
  return function(to){
    return path.relative(from, to);
  };
}

exports.cwd = cwd;

exports.relative = relative;

exports.resolve = path.resolve;