mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2025-02-16 16:44:46 +01:00
28 lines
511 B
Markdown
28 lines
511 B
Markdown
|
# better-path-resolve
|
||
|
|
||
|
> A better path.resolve() that normalizes paths on Windows
|
||
|
|
||
|
<!--@shields('npm')-->
|
||
|
[![npm version](https://img.shields.io/npm/v/better-path-resolve.svg)](https://www.npmjs.com/package/better-path-resolve)
|
||
|
<!--/@-->
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
```sh
|
||
|
npm i -S better-path-resolve
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```js
|
||
|
'use strict'
|
||
|
const betterPathResolve = require('better-path-resolve')
|
||
|
|
||
|
console.log(betterPathResolve('c:/src'))
|
||
|
//> C:\src
|
||
|
```
|
||
|
|
||
|
## License
|
||
|
|
||
|
[MIT](./LICENSE) © [Zoltan Kochan](https://www.kochan.io)
|