slash
Convert Windows backslash paths to slash paths
Last updated 6 months ago .
· Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install slash 
SYNC missed versions from official npm registry.

slash

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.

This was created since the path methods in Node.js outputs \\ paths on Windows.

Install

npm install slash

Usage

import path from 'node:path';
import slash from 'slash';

const string = path.join('foo', 'bar');
// Unix    => foo/bar
// Windows => foo\\bar

slash(string);
// Unix    => foo/bar
// Windows => foo/bar

API

slash(path)

Type: string

Accepts a Windows backslash path and returns a path with forward slashes.

Current Tags

  • 5.0.0                                ...           latest (6 months ago)

8 Versions

  • 4.0.0                                ...           2 years ago
  • 3.0.0                                ...           4 years ago
  • 2.0.0                                ...           5 years ago
  • 1.0.0                                ...           9 years ago
  • 0.1.3                                ...           9 years ago
  • 0.1.1                                ...           9 years ago
  • 0.1.0                                ...           10 years ago
  • 5.0.0                                ...           6 months ago
Maintainers (1)
Dependencies (0)
None
Dev Dependencies (3)

Copyright © npmmirror.com | 浙ICP备15033595号-63 |