2.0.0 • Published 4 years ago

move-path v2.0.0

Weekly downloads
132
License
MIT
Repository
github
Last release
4 years ago

move-path npm

Move path to destination folder.

Install

$ yarn add move-path

Usage

movePath(from, to)

Handles both relative and absolute from and to and returns an absolute destination path.

import movePath from 'move-path'

movePath('src/foo/bar/index.js', 'build/baz/')
// /absolute/build/baz/foo/bar/index.js

movePath('src/foo/bar/', 'build/baz/')
// /absolute/build/baz/foo/bar/

movePath('src/foo/bar/index.js', 'src/foo/')
// /absolute/src/foo/bar/index.js

movePath('src/foo/bar/', 'src/foo/bar')
// /absolute/src/foo/bar/

movePath('src/foo/bar/index.js', '/build/')
// /build/foo/bar/index.js

movePath('src/foo/bar/index.js', './')
// /absolute/src/foo/bar/index.js