Package Exports
- slash
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (slash) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
slash 
Convert Windows backslash paths to slash paths: foo\\bar
➔ foo/bar
Forward-slash paths can be used in Windows as long as they're not extended-length paths and don't contain any non-ascii characters.
Install
Download the library manually or with a package-manager.
npm
npm install --save slash
Bower
bower install --save slash
Component
component install sindresorhus/slash
Example
Using Node.js:
var path = require('path');
var slash = require('slash');
var str = path.join('foo', 'bar');
console.log(str);
// Unix => foo/bar
// Windows => foo\\bar
if (process.platform === 'win32') {
str = slash(str);
}
console.log(str);
// Unix => foo/bar
// Windows => foo/bar
API
slash(path)
Type: String
Accepts a Windows backslash path and returns a slash path.
License
MIT © Sindre Sorhus