jsdoc/node/path.js
2013-11-11 23:49:54 -08:00

10 lines
130 B
JavaScript

'use strict';
exports.pathToUri = function(_path) {
return _path;
};
exports.uriToPath = function(uri) {
return uri;
};