1.0.4 • Published 3 years ago

cross-paths v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

separator

  • Simple: extremely simple to use
  • Darwin to Win32: Convert your darwin based operating system paths to Windows operating system
  • Win32 to Darwin: Convert your Windows paths to darwin based operating system
  • MIT Licensed: Free to use for personal and commercial projects

Installation

# install the package
npm install cross-paths

API

  • darwinToWin32()
  • win32ToDarwin()
  • path (required)

Usage

  • Convert darwin paths to win32
const { darwinToWin32 } = require('cross-paths');

const path = `/Users/saadirfan/GitHub`

const win32Path = darwinToWin32(path); // new windows path
  • Convert win32 to darwin paths
const { win32ToDarwin } = require('cross-paths');

const path = `C:\\Users\\Saad\\GitHub`;

const darwinPath = win32ToDarwin(path); // new darwin path

🔑 License & Conduct