Last change
on this file since 6fe77af was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
912 bytes
|
Line | |
---|
1 | # slash [![Build Status](https://travis-ci.org/sindresorhus/slash.svg?branch=master)](https://travis-ci.org/sindresorhus/slash)
|
---|
2 |
|
---|
3 | > Convert Windows backslash paths to slash paths: `foo\\bar` ➔ `foo/bar`
|
---|
4 |
|
---|
5 | [Forward-slash paths can be used in Windows](http://superuser.com/a/176395/6877) as long as they're not extended-length paths and don't contain any non-ascii characters.
|
---|
6 |
|
---|
7 | This was created since the `path` methods in Node.js outputs `\\` paths on Windows.
|
---|
8 |
|
---|
9 |
|
---|
10 | ## Install
|
---|
11 |
|
---|
12 | ```
|
---|
13 | $ npm install slash
|
---|
14 | ```
|
---|
15 |
|
---|
16 |
|
---|
17 | ## Usage
|
---|
18 |
|
---|
19 | ```js
|
---|
20 | const path = require('path');
|
---|
21 | const slash = require('slash');
|
---|
22 |
|
---|
23 | const string = path.join('foo', 'bar');
|
---|
24 | // Unix => foo/bar
|
---|
25 | // Windows => foo\\bar
|
---|
26 |
|
---|
27 | slash(string);
|
---|
28 | // Unix => foo/bar
|
---|
29 | // Windows => foo/bar
|
---|
30 | ```
|
---|
31 |
|
---|
32 |
|
---|
33 | ## API
|
---|
34 |
|
---|
35 | ### slash(path)
|
---|
36 |
|
---|
37 | Type: `string`
|
---|
38 |
|
---|
39 | Accepts a Windows backslash path and returns a path with forward slashes.
|
---|
40 |
|
---|
41 |
|
---|
42 | ## License
|
---|
43 |
|
---|
44 | MIT © [Sindre Sorhus](https://sindresorhus.com)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.