Convert path from web to windows


License
MIT
Install
npm install mellow@3.0.2

Documentation

Mellow License NPM version Build Status Coverage Status

Mellow - convert path from web to windows.

Install

npm i mellow

API

webToWin

Previouse has name pathToWin.

const mellow  = require('mellow');
mellow.webToWin('/c/windows');
// returns
'c:\\windows';

winToWeb

Previouse has name pathFromWin.

const mellow  = require('mellow');
mellow.winToWeb('c:\\windows');
// returns
'/c/windows';

License

MIT