UNPKG

nor-debug

Version:
14 lines (10 loc) 275 B
var debug = require('./core.js'); var PATH = require('path'); /** Pretty print paths */ module.exports = function print_path(path) { if(debug.defaults.project_root === undefined) { return path; } return PATH.relative(debug.defaults.project_root, path); }; /** EOF */