generationtux/brizo

View on GitHub
ui/config/helpers.js

Summary

Maintainability
A
0 mins
Test Coverage
var path = require('path');
var _root = path.resolve(__dirname, '..');

function root(args) {
  args = Array.prototype.slice.call(arguments, 0);
  return path.join.apply(path, [_root].concat(args));
}

exports.root = root;