Subtheme of barrio

10 lines
150 B

2 years ago
'use strict';
var path = require('path');
function normalize(str) {
return str === '' ? str : path.normalize(str);
}
module.exports = normalize;