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;