index.js 117 B

12345
  1. 'use strict';
  2. module.exports = function(path) {
  3. return path.split(/[\\\/]/g).map(encodeURIComponent).join('/');
  4. };