normalize.js 150 B

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