Code coverage report for lib/filePath.js

Statements: 66.67% (2 / 3)      Branches: 100% (0 / 0)      Functions: 0% (0 / 1)      Lines: 66.67% (2 / 3)      Ignored: none     

All files » lib/ » filePath.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  1                   1      
'use strict';
var p = require('path');
 
/**
 * filePath
 * Converts a project relative path into a full system path
 *
 * @private
 * @param {String} path project relative path
 * @return {String} full system path
 */
module.exports = function (path) {
  return p.join(p.dirname(module.parent.filename), path);
};