nouveau-theatre-de-besancon/node_modules/vinyl/lib/normalize.js
2024-09-20 10:32:49 +02:00

9 lines
150 B
JavaScript

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