1 2 3 4 5 6 7 8 9
'use strict'; var path = require('path'); function normalize(str) { return str === '' ? str : path.normalize(str); } module.exports = normalize;