normalize.js 150 B

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