JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 93121440
  • Score
    100M100P100Q272458F

Convert Windows backslash paths to slash paths

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 Build Status

Convert Windows backslash paths to slash paths: foo\\barfoo/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