AppGeo/emberate

View on GitHub
lib/util/fixPathSep.js

Summary

Maintainability
A
0 mins
Test Coverage
var path = require('path');

module.exports = function(p) {
  return path.sep === '\\' ? p.split(path.sep).join('/') : p;
}