1
0
forked from Rowland/EG
EG/Cesium-1.132/node_modules/vinyl/lib/normalize.js
2025-08-25 17:48:13 +08:00

10 lines
150 B
JavaScript

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