Code coverage report for lib/util/fixPathSep.js

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

All files » lib/util/ » fixPathSep.js
1 2 3 4 5 61   1 564    
var path = require('path');
 
module.exports = function(p) {
  return path.sep === '\\' ? p.split(path.sep).join('/') : p;
}